20032: Fix unnecessary race in test.
[arvados.git] / apps / workbench / app / views / projects / show.html.erb
index 56055645170b8640b69c5691352ca858c45205ce..60f2d23407e4e211799f37ac42c66e762e48b49f 100644 (file)
@@ -1,3 +1,7 @@
+<%# Copyright (C) The Arvados Authors. All rights reserved.
+
+SPDX-License-Identifier: AGPL-3.0 %>
+
 <% content_for :content_top do %>
   <h2>
     <% if @object.uuid == current_user.andand.uuid %>
@@ -7,6 +11,9 @@
       <%= render_editable_attribute @object, 'name', nil, { 'data-emptytext' => "New project" } %>
     <% end %>
   </h2>
+  <% if @object.class == Group and @object.group_class == 'filter' %>
+    This is a filter group.
+  <% end %>
 <% end %>
 
 <%