mirror of
https://github.com/directus/directus.git
synced 2026-01-31 10:38:02 -05:00
Remove dots when disabled (#4075)
* Remove dots when disabled
Fixes #4038
* Revert "Remove dots when disabled"
This reverts commit 2276023471.
* Update save-options
Fixes #4038
* Remove dots in files and users routes
* Remove :disabled tags
This commit is contained in:
@@ -132,8 +132,7 @@
|
||||
|
||||
<template #append-outer>
|
||||
<save-options
|
||||
v-if="collectionInfo.meta && collectionInfo.meta.singleton !== true"
|
||||
:disabled="isSavable === false"
|
||||
v-if="collectionInfo.meta && collectionInfo.meta.singleton !== true && isSavable === true"
|
||||
@save-and-stay="saveAndStay"
|
||||
@save-and-add-new="saveAndAddNew"
|
||||
@save-as-copy="saveAsCopyAndNavigate"
|
||||
|
||||
@@ -99,7 +99,7 @@
|
||||
|
||||
<template #append-outer>
|
||||
<save-options
|
||||
:disabled="hasEdits === false || saveAllowed === false"
|
||||
v-if="hasEdits === true || saveAllowed === true"
|
||||
@save-and-stay="saveAndStay"
|
||||
@save-as-copy="saveAsCopyAndNavigate"
|
||||
/>
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
|
||||
<template #append-outer>
|
||||
<save-options
|
||||
:disabled="hasEdits === false"
|
||||
v-if="hasEdits === true"
|
||||
@save-and-stay="saveAndStay"
|
||||
@save-and-add-new="saveAndAddNew"
|
||||
@save-as-copy="saveAsCopyAndNavigate"
|
||||
|
||||
Reference in New Issue
Block a user