Declutter modals with previous button

Use the sidenav instead
This commit is contained in:
Ben Haynes
2020-08-14 15:39:41 -04:00
parent 6c5c792a58
commit e175d42f6a
2 changed files with 0 additions and 6 deletions

View File

@@ -4,9 +4,6 @@
{{ $t('cancel') }}
</v-button>
<div class="spacer" />
<v-button @click="previousTab" secondary :disabled="previousDisabled">
{{ $t('previous') }}
</v-button>
<v-button v-if="currentTabIndex < tabs.length - 1" @click="nextTab" :disabled="nextDisabled">
{{ $t('next') }}
</v-button>

View File

@@ -85,9 +85,6 @@
{{ $t('cancel') }}
</v-button>
<div class="spacer" />
<v-button secondary @click="currentTab = ['collection']" :disabled="currentTab[0] === 'collection'">
{{ $t('previous') }}
</v-button>
<v-button
:disabled="!collectionName || collectionName.length === 0"
v-if="currentTab[0] === 'collection'"