Skip to content

Commit

Permalink
Make FO New Recents list selection match other recent lists
Browse files Browse the repository at this point in the history
  • Loading branch information
kleintom committed Feb 13, 2025
1 parent d4d65f6 commit c445870
Showing 1 changed file with 17 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,30 @@
<thead>
<tr>
<th>Total</th>
<th />
</tr>
</thead>
<tbody>
<tr
v-for="item in list"
:key="item.id"
@click="selectFO(item)"
>
<td
v-html="item.object_tag"
class="cursor-pointer"
/>
<td v-html="item.object_tag" />
<td>
<VBtn
circle
color="primary"
@click="() => selectFO(item)"
>
<VIcon
name="pencil"
x-small
/>
</VBtn>
</td>
</tr>


</tbody>
</table>
</template>
Expand All @@ -43,6 +54,7 @@
import VModal from '@/components/ui/Modal'
import VSpinner from '@/components/ui/VSpinner.vue'
import VBtn from '@/components/ui/VBtn/index.vue'
import VIcon from '@/components/ui/VIcon/index.vue'
import { FieldOccurrence } from '@/routes/endpoints'
import { ref, watch } from 'vue'
Expand Down

0 comments on commit c445870

Please sign in to comment.