fix: do not show an empty body element when bulk editing (#4638)
Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
parent
c578b79f39
commit
553f4d7a8f
3 changed files with 3 additions and 3 deletions
|
|
@ -803,7 +803,7 @@
|
|||
"sync_description": "These settings are synced to cloud.",
|
||||
"sync_environments": "Environments",
|
||||
"sync_history": "History",
|
||||
"history_disabled": "History is disabled",
|
||||
"history_disabled": "History is disabled. Contact your organization admin to enable history",
|
||||
"system_mode": "System",
|
||||
"telemetry": "Telemetry",
|
||||
"telemetry_helps_us": "Telemetry helps us to personalize our operations and deliver the best experience to you.",
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@
|
|||
</div>
|
||||
|
||||
<HoppSmartPlaceholder
|
||||
v-if="workingParams.length === 0"
|
||||
v-if="workingParams.length === 0 && !isBulkEditing"
|
||||
:src="`/images/states/${colorMode.value}/upload_single_file.svg`"
|
||||
:alt="`${t('empty.body')}`"
|
||||
:text="t('empty.body')"
|
||||
|
|
|
|||
|
|
@ -153,7 +153,7 @@
|
|||
</template>
|
||||
</draggable>
|
||||
<HoppSmartPlaceholder
|
||||
v-if="workingUrlEncodedParams.length === 0"
|
||||
v-if="workingUrlEncodedParams.length === 0 && !isBulkEditing"
|
||||
:src="`/images/states/${colorMode.value}/add_category.svg`"
|
||||
:alt="`${t('empty.body')}`"
|
||||
:text="t('empty.body')"
|
||||
|
|
|
|||
Loading…
Reference in a new issue