12033: Style uuid column.
[arvados.git] / 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})),
                     ])