12033: Style uuid column.
authorTom Clegg <tom@curoverse.com>
Thu, 10 Aug 2017 19:01:13 +0000 (15:01 -0400)
committerTom Clegg <tom@curoverse.com>
Thu, 10 Aug 2017 19:01:13 +0000 (15:01 -0400)
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tom@curoverse.com>

apps/workbench/app/assets/javascripts/components/collections.js

index 527ce6c63e56a92b5d82583c168964afb2fd84ef..4f995afa6f593966f0920a1b6dc8af3b3c33e226 100644 (file)
@@ -16,7 +16,7 @@ window.components.collection_table = {
                 vnode.attrs.loader.displayable.map(function(item) {
                     return m('tr', [
                         m('td', m('a.btn.btn-xs.btn-default', {href: item.session.baseURL.replace('://', '://workbench.')+'/collections/'+item.uuid}, 'Show')),
-                        m('td', item.uuid),
+                        m('td.arvados-uuid', item.uuid),
                         m('td', item.name || '(unnamed)'),
                         m('td', m(window.components.datetime, {parse: item.modified_at})),
                     ])