@meistrari/tela-build 1.34.1 → 1.35.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -249,9 +249,9 @@ function getIconName() {
|
|
|
249
249
|
</div>
|
|
250
250
|
</div>
|
|
251
251
|
</div>
|
|
252
|
-
<div flex="~ col" gap-6px>
|
|
252
|
+
<div v-if="toolResult?.output || isRunning" flex="~ col" gap-6px>
|
|
253
253
|
<span body-12-regular text-gray-700 class="@2xl:body-14-regular">{{ $t('workflow.result') }}</span>
|
|
254
|
-
<div v-if="toolResult" bg border-0.5px border-gray-200 rounded-10px pl-10px py-2>
|
|
254
|
+
<div v-if="toolResult?.output" bg border-0.5px border-gray-200 rounded-10px pl-10px py-2>
|
|
255
255
|
<TelaScrollArea class="flex flex-col max-h-300px">
|
|
256
256
|
<div max-h-300px pr-4>
|
|
257
257
|
<code block body-12-regular class="@2xl:body-14-regular">
|
|
@@ -264,6 +264,7 @@ function getIconName() {
|
|
|
264
264
|
<TelaSkeleton w-full h-30px rounded-none bg-gray-200 />
|
|
265
265
|
</div>
|
|
266
266
|
</div>
|
|
267
|
+
<slot name="footer" />
|
|
267
268
|
</div>
|
|
268
269
|
</div>
|
|
269
270
|
</TelaCollapsibleContent>
|