summaryrefslogtreecommitdiff
path: root/app/views/dashboard/groups/_groups.html.haml
blob: 168e6272d8ea43e1c096d7c8bac118e145c42424 (plain)
1
2
3
4
5
6
7
8
9
.js-groups-list-holder
  #dashboard-group-app{ data: { endpoint: dashboard_groups_path(format: :json), path: dashboard_groups_path } }
    .groups-list-loading
      = icon('spinner spin', 'v-show' => 'isLoading')
    %template{ 'v-if' => '!isLoading && isEmpty' }
      %div{ 'v-cloak' => true }
        = render 'empty_state'
    %template{ 'v-else-if' => '!isLoading && !isEmpty' }
      %groups-component{ ':groups' => 'state.groups', ':page-info' => 'state.pageInfo' }