make td looks like clickable
This commit is contained in:
@@ -292,8 +292,8 @@ const component_file = {
|
|||||||
props: ['file'],
|
props: ['file'],
|
||||||
emits: ['play_audio'],
|
emits: ['play_audio'],
|
||||||
template: `
|
template: `
|
||||||
<td @click="dialog">{{ file.filename }}</td>
|
<td class="clickable" @click="dialog">{{ file.filename }}</td>
|
||||||
<td @click="show_folder">{{ file.foldername }}</td>
|
<td class="clickable" @click="show_folder">{{ file.foldername }}</td>
|
||||||
<td>{{ computed_readable_size }}</td>
|
<td>{{ computed_readable_size }}</td>
|
||||||
<td>
|
<td>
|
||||||
<button @click="dialog">Dialog</button>
|
<button @click="dialog">Dialog</button>
|
||||||
|
|||||||
@@ -41,3 +41,6 @@ a.router-link-active {
|
|||||||
height: 39px;
|
height: 39px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
td.clickable {
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user