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:
Akash K 2024-12-23 12:18:06 +05:30 committed by GitHub
parent c578b79f39
commit 553f4d7a8f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View file

@ -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.",

View file

@ -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')"

View file

@ -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')"