Skip to content
Snippets Groups Projects

Update: Hide RESET and ARCHIVE buttons

Merged Marcel Nellesen requested to merge Topic/608-hideButtons into Product/585-hideButtons
1 file
+ 5
2
Compare changes
  • Side-by-side
  • Inline
+ 5
2
@@ -172,15 +172,14 @@
disabled
@click.prevent="clickArchive"
v-show="isOwner || isNewProject"
style="display: inline;"
>{{ $t('archive') }}</b-button>
<b-button
type="button"
variant="light"
id="project_clear_button"
@click.prevent="clickClearForm"
@click="$v.form.$reset"
v-show="isOwner || isNewProject"
style="display: inline;"
>{{ $t('clearFormButton') }}</b-button>
<DeleteModal
:projectId="projectId"
@@ -583,4 +582,8 @@ export default Vue.extend({
background-color: rgba(204,7,30,.9);
border-radius: 0;
}
#project_archive_button,
#project_clear_button {
display: none;
}
</style>
Loading