Skip to content

Commit

Permalink
Use different icons for datasets and collections
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed May 25, 2018
1 parent ce76463 commit b93e01a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions client/galaxy/scripts/components/DataDialog.vue
Expand Up @@ -16,7 +16,8 @@
<div v-if="optionsShow">
<b-table small hover :items="items" :fields="fields" :filter="filter" @row-clicked="handleRow">
<template slot="name" slot-scope="data">
<div class="fa fa-file-o"/>
<i v-if="data.item.history_content_type == 'dataset'" class="fa fa-file-o"/>
<i v-else class="fa fa-copy"/>
{{ data.item.hid }}: {{ data.value }}
</template>
<template slot="extension" slot-scope="data">
Expand Down Expand Up @@ -121,7 +122,4 @@ export default {
max-height: 50vh;
overflow-y: auto;
}
.data-dialog-modal .modal-body hover tr {
font-weight: bold;
}
</style>

0 comments on commit b93e01a

Please sign in to comment.