some changes

This commit is contained in:
Simon Pocrnjič
2025-10-19 09:35:30 +02:00
parent 322bd66502
commit ea00852528
4 changed files with 19 additions and 19 deletions
+1 -3
View File
@@ -81,9 +81,7 @@ const fmtCurrency = (v) => {
<template>
<AppLayout title="Client">
<template #header>
<h2 class="font-semibold text-xl text-gray-800 leading-tight"></h2>
</template>
<template #header> </template>
<div class="py-12">
<div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
<div class="px-3 bg-white overflow-hidden shadow-xl sm:rounded-lg">
@@ -154,18 +154,14 @@ const destroyAction = () => {
<template>
<div class="p-4 flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
<div class="flex gap-3 items-center w-full sm:w-auto">
<TextInput
v-model="search"
placeholder="Search actions..."
class="w-full sm:w-64"
/>
<TextInput v-model="search" placeholder="Iskanje..." class="w-full sm:w-64" />
<div class="w-64">
<Multiselect
v-model="selectedSegment"
:options="segmentOptions.map((o) => o.id)"
:multiple="false"
:searchable="true"
placeholder="Filter by segment"
placeholder="Filter po segmentu"
:append-to-body="true"
:custom-label="(opt) => segmentOptions.find((o) => o.id === opt)?.name || ''"
/>