Skip to content

Commit

Permalink
Resize
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Nov 15, 2024
1 parent 5199802 commit 95109dd
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [1.1.0 - 2024-11-12]
## [1.1.0 - 2024-11-15]
### Added
- Dockerfile
- Single Spa
Expand Down
2 changes: 1 addition & 1 deletion src/components/BridgeheadOverview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export default class BridgeheadOverview extends Vue {
}
getQueryStatus(): number[] {
const isFinished = this.bridgeheads.filter((bridgehead) => bridgehead.queryState === 'FINISHED');
const notFinished = this.bridgeheads.filter((bridgehead) => bridgehead.state !== 'FINISHED');
const notFinished = this.bridgeheads.filter((bridgehead) => bridgehead.queryState !== 'FINISHED');
return [isFinished.length, notFinished.length]
}
}
Expand Down
22 changes: 11 additions & 11 deletions src/components/ProjectView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</div>
<div class="right-container">
<div style="display:flex; flex-flow: column; width:100%; padding-right:3%">
<div style="display:flex; flex-flow: column; padding-right:3%">
<div class="container">
<br/>
<h2>Project Information</h2>
Expand Down Expand Up @@ -215,15 +215,11 @@
button-class="btn btn-primary mr-2"
:project-manager-backend-service="projectManagerBackendService"/>
</div>
<div v-if="!existsDraftDialog || draftDialogCurrentStep==4">
<hr/>
<div v-if="!existsDraftDialog || draftDialogCurrentStep==4" class="inviteUser">
<UserInput :project="project" :context="context"
:bridgeheads="visibleBridgeheads"
:project-manager-backend-service="projectManagerBackendService"/>
<DocumentsTable :context="context"
:project-manager-backend-service="projectManagerBackendService"
:download-action="Action.DOWNLOAD_PUBLICATION_ACTION"
:fetch-list-action="Action.FETCH_PUBLICATIONS_ACTION"
:bridgeheads="visibleBridgeheads" icon-class="bi bi-download" text="Publications: "/>
</div>
<hr/>
</div>
Expand Down Expand Up @@ -387,6 +383,12 @@
</tbody>
</table>
</div>
<DocumentsTable v-if="!existsDraftDialog || draftDialogCurrentStep==4" :context="context"
:project-manager-backend-service="projectManagerBackendService"
:download-action="Action.DOWNLOAD_PUBLICATION_ACTION"
:fetch-list-action="Action.FETCH_PUBLICATIONS_ACTION"
:bridgeheads="visibleBridgeheads" icon-class="bi bi-download" text="Publications: "/>
<br/>
<UploadButton v-if="!existsDraftDialog || draftDialogCurrentStep==4" :context="context"
:project-manager-backend-service="projectManagerBackendService"
:module="Module.PROJECT_DOCUMENTS_MODULE" :action="Action.UPLOAD_PUBLICATION_ACTION"
Expand Down Expand Up @@ -784,14 +786,15 @@ export default defineComponent({
}
.left-container {
flex: 0.5;
flex: 0.4;
padding-left: 5%;
}
.right-container {
flex: 3;
display: flex;
flex-flow: row;
margin-top: 3%;
}
.button-container-right button {
Expand Down Expand Up @@ -859,11 +862,9 @@ export default defineComponent({
font-size: 16px;
padding-top: 2px;
}
.active-step {
font-weight: bold;
}
.active-step .step-circle {
background-color: #007bff;
}
Expand Down Expand Up @@ -897,7 +898,6 @@ export default defineComponent({
text-align: center;
}
.inviteUser {
margin: 2em 0;
}
Expand Down

0 comments on commit 95109dd

Please sign in to comment.