Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/templates/TemplateSearchBar.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="relative w-full p-4">
<div class="relative w-full">
<div class="h-12 flex items-center gap-4 justify-between">
<div class="flex-1 max-w-md">
<div class="flex-1 max-w-xs">
<AutoComplete
v-model.lazy="searchQuery"
:placeholder="$t('templateWorkflows.searchPlaceholder')"
Expand Down
2 changes: 1 addition & 1 deletion src/components/templates/TemplateWorkflowCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<h3 class="line-clamp-2 text-lg font-normal mb-0" :title="title">
{{ title }}
</h3>
<p class="line-clamp-2 text-sm text-muted grow" :title="description">
<p class="line-clamp-4 text-sm text-muted grow" :title="description">
{{ description }}
</p>
</div>
Expand Down
5 changes: 3 additions & 2 deletions src/components/templates/TemplateWorkflowView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@
data-key="name"
:lazy="true"
pt:root="h-full grid grid-rows-[auto_1fr_auto]"
pt:header="p-0"
pt:content="p-2 overflow-auto"
>
<template #header>
<div class="flex flex-col">
<div class="flex justify-between items-center mb-4">
<div class="flex flex-col mb-4">
<div class="flex justify-between items-center">
<h2 class="text-lg">{{ title }}</h2>
<SelectButton
v-model="layout"
Expand Down