Skip to content
Snippets Groups Projects
Select Git revision
  • e6522f9becb236abc4709bc2ee0aedd24adbf091
  • main default protected
  • Kelvinrr-patch-3
  • radius_update
  • revert-616-apollo_pan
  • vims
  • 0.10
  • Kelvinrr-patch-2
  • revert-563-minirf_fix
  • Kelvinrr-patch-1
  • 0.9
  • acpaquette-patch-3
  • acpaquette-patch-2
  • acpaquette-patch-1
  • spiceql
  • ci-coverage
  • 0.10.0
  • 0.9.1
  • 0.9.0
  • 0.8.7
  • 0.8.8
  • 0.8.6
  • 0.8.3
  • 0.8.4
  • 0.8.5
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.3
  • 0.7.2
  • 0.7.1
  • 0.7.0
  • 0.6.5
  • 0.6.4
  • 0.6.3
  • 0.6.2
36 results

conftest.py

Blame
  • Jobs.vue 977 B
    <template>
    <div>
      <h3>Async recall jobs</h3>
      <table class="table b-table table-striped table-hover">
        <thead>
          <tr>
            <th>Creation time</th>
            <th>Id</th>
            <th>Phase</th>
          </tr>
        </thead>
        <tbody>
          <tr v-for="job in jobs" :key="job.id">
            <td>{{job.creationTime}}</td>
            <td>{{job.id}}</td>
            <td>{{job.phase}}</td>
          </tr>
        </tbody>
      </table>
      <div id="jobs-loading" v-if="jobsLoading" class="loading">
        <div class="spinner-wrapper">
          <b-spinner variant="primary" style="width: 3rem; height: 3rem;" label="Loading"></b-spinner>
        </div>
      </div>
    </div>
    </template>
    
    <script>
    export default {
      computed: {
        jobs() { return this.$store.state.jobs },
        jobsLoading() { return this.$store.state.jobsLoading }
      },
      mounted() {
        this.loadJobs();
        this.$store.commit('setLoading', false);
      },
      methods: {
        loadJobs() {
          this.$store.dispatch('loadJobs');
        }
      }
    }
    </script>