Remove id from not needed elements

This commit is contained in:
Henrique Dias 2017-07-04 17:48:09 +01:00
parent 2d9caaec4a
commit 5291e71132
No known key found for this signature in database
GPG Key ID: 936F5EB68D786730
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<button @click="download" aria-label="Download" title="Download" class="action" id="download-button">
<button @click="download" aria-label="Download" title="Download" class="action">
<i class="material-icons">file_download</i>
<span>Download</span>
<span v-if="selectedCount > 0" class="counter">{{ selectedCount }}</span>

View File

@ -1,5 +1,5 @@
<template>
<button title="Info" aria-label="Info" class="action" @click="show" id="info-button">
<button title="Info" aria-label="Info" class="action" @click="show">
<i class="material-icons">info</i>
<span>Info</span>
</button>