Skip to content
Merged
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 resources/js/components/CacheTrackerModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ axios

<ui-description v-text="__('The following tags are being tracked on :url:', { url: url })" v-if="tags.length"></ui-description>

<div class="flex gap-2 mt-4" v-if="tags.length">
<div class="flex flex-wrap gap-2 mt-4" v-if="tags.length">

<template v-for="tag in tags">
<ui-badge pill :color="getColor(tag)" v-text="tag"></ui-badge>
Expand All @@ -79,7 +79,7 @@ axios

<ui-description v-text="__('The following URLs contain :item:', { item: 'ryan' })" v-if="urls.length"></ui-description>

<div class="flex gap-2 mt-4" v-if="urls.length">
<div class="flex flex-wrap gap-2 mt-4" v-if="urls.length">

<template v-for="url in urls">
<a :href="url" v-text="url"></a><br />
Expand Down
Loading