Sha256: a26ccd50645753cca93df62305ce5acaadd0f089ff9b3410ec0f24335e5f38c1

Contents?: true

Size: 744 Bytes

Versions: 7

Compression:

Stored size: 744 Bytes

Contents

<!-- vue.js -->
<li class="nav-item dropdown" id="vue-notification">
  <a class="nav-link dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" href="#">
    <i class="fa fa-bell fa-fw"></i>
    <span class="badge" v-if="hasAlerts">{{ alertsCount }}</span>
  </a>
  <ul class="dropdown-menu" aria-labelledby="alertsDropdown">
    <li v-if="!hasAlerts">
      <a>
        <div class="nothing text text-success">
          <%= icon "fa-check" %>
          <%= t "terms.no_alert" %>
        </div>
      </a>
    </li>
    <li v-for="alert in alerts">
      <a>
        <div>
          <%= icon("fa-cog fa-fw fa-lg fa-spin") %>
          {{ alert }}
        </div>
      </a>
    </li>
  </ul>
</li>
<!-- /vue.js -->

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
fluentd-ui-1.1.0 app/views/shared/vue/_notification.html.erb
fluentd-ui-1.0.1 app/views/shared/vue/_notification.html.erb
fluentd-ui-1.0.0 app/views/shared/vue/_notification.html.erb
fluentd-ui-1.0.0.beta.1 app/views/shared/vue/_notification.html.erb
fluentd-ui-1.0.0.alpha.3 app/views/shared/vue/_notification.html.erb
fluentd-ui-1.0.0.alpha.2 app/views/shared/vue/_notification.html.erb
fluentd-ui-1.0.0.alpha.1 app/views/shared/vue/_notification.html.erb