Skip to content

Commit 135d5b0

Browse files
committed
Add warning when no valide refresh
1 parent 5c156bc commit 135d5b0

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/views/event/edit.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</thead>
2525
<tbody>
2626
{% for stream in streams %}
27-
<tr class="cursor-pointer{% if stream.organization_slug in invalidTokenSlugs %} table-warning{% endif %}" onclick="window.location='/admin/stream/{{ stream.guid }}/edit'" title="GUID : {{ stream.guid }}" style="cursor:pointer;">
27+
<tr class="cursor-pointer" onclick="window.location='/admin/stream/{{ stream.guid }}/edit'" title="GUID : {{ stream.guid }}" style="cursor:pointer;">
2828
<td>{{ stream.id | e }}</td>
2929
<td>
3030
{{ stream.title | e }}

src/views/stream/index-admin.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@
303303
</thead>
304304
<tbody>
305305
{% for stream in streams %}
306-
<tr class="cursor-pointer{% if stream.organization_slug in invalidTokenSlugs %} table-warning{% endif %}" onclick="window.location='/admin/stream/{{ stream.guid }}/edit'" title="GUID : {{ stream.guid }}">
306+
<tr class="cursor-pointer" onclick="window.location='/admin/stream/{{ stream.guid }}/edit'" title="GUID : {{ stream.guid }}">
307307
<td>{{ stream.id | e }}</td>
308308
<td>
309309
{{ stream.title | e }}

src/views/stream/index.html.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@
189189
</thead>
190190
<tbody>
191191
{% for stream in streams %}
192-
<tr class="cursor-pointer{% if stream.organization_slug in invalidTokenSlugs %} table-warning{% endif %}" onclick="window.location='/admin/stream/{{ stream.guid }}/edit'" title="GUID : {{ stream.guid }}">
192+
<tr class="cursor-pointer" onclick="window.location='/admin/stream/{{ stream.guid }}/edit'" title="GUID : {{ stream.guid }}">
193193
<td>{{ stream.id | e }}</td>
194194
<td>
195195
{{ stream.title | e }}

0 commit comments

Comments
 (0)