Skip to content

Commit

Permalink
feat: anchor for preset tables links
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsNotGoodName committed Jan 20, 2022
1 parent 6473ed5 commit 865f6ba
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions web/src/views/Edit.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@
<td>
<preset-edit-button :preset="preset" />
</td>
<td>{{ preset.url }}</td>
<td>
<a :href="preset.url">{{ preset.url }}</a>
</td>
<td :class="{ 'is-info': radio.url == preset.url }">{{ preset.newName }}</td>
<td>{{ preset.newUrl }}</td>
<td>
<a :href="preset.newUrl">{{ preset.newUrl }}</a>
</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit 865f6ba

Please sign in to comment.