Remove id from not needed elements

Former-commit-id: d69ab4b48daff97db9ea91ccd2341f07c2ae89de [formerly bba6e08f3d96f251bdfb51a88b1e03c3ce2f32f0] [formerly 8d5d2dd9b3b2fa702c4b7831821c79912bb2f470 [formerly 5291e71132]]
Former-commit-id: d30c056123fa2bc60519f45d8ba5a7151c0ff726 [formerly 8acf445e82c01881d7129489b68a7520c415bb8a]
Former-commit-id: b43f8a1301fa55506c6d0e22b91d395957275d39
This commit is contained in:
Henrique Dias 2017-07-04 17:48:09 +01:00
parent 1138e7e9bd
commit 007e1a63c0
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template> <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> <i class="material-icons">file_download</i>
<span>Download</span> <span>Download</span>
<span v-if="selectedCount > 0" class="counter">{{ selectedCount }}</span> <span v-if="selectedCount > 0" class="counter">{{ selectedCount }}</span>

View File

@ -1,5 +1,5 @@
<template> <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> <i class="material-icons">info</i>
<span>Info</span> <span>Info</span>
</button> </button>