• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

FAIRsharing / fairsharing.github.io / 24769584990

22 Apr 2026 08:57AM UTC coverage: 95.892% (-4.1%) from 100.0%
24769584990

push

github

web-flow
Merge pull request #2746 from FAIRsharing/dev

Dev

3653 of 3813 branches covered (95.8%)

Branch coverage included in aggregate %.

17344 of 18229 new or added lines in 282 files covered. (95.15%)

766 existing lines in 50 files now uncovered.

38617 of 40268 relevant lines covered (95.9%)

5.48 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

96.43
/src/components/Users/MessageHandler.vue
1
<template>
2
  <div>
1✔
3
    <v-alert
1✔
4
      v-if="messages()[field].message && messages()[field]"
1✔
5
      :type="messages()[field].error ? 'error' : 'success'"
1✔
6
      class="mb-4"
1✔
7
      variant="tonal"
1✔
8
    >
9
      <div v-safe-html="messages()[field].message"></div>
1✔
10
    </v-alert>
1✔
11
  </div>
1✔
12
</template>
13

14
<script>
15
import { mapState } from "vuex";
1✔
16

17
import stringUtils from "@/utils/stringUtils";
1✔
18
import messages from "../../store/messages";
1✔
19

20
export default {
1✔
21
  name: "MessageHandler",
1✔
22
  mixins: [stringUtils],
1✔
23
  props: {
1✔
24
    field: {
1✔
25
      type: String,
1✔
26
      default: null,
1✔
27
    },
1✔
28
  },
1✔
29
  computed: {
1✔
30
    messages() {
1✔
NEW
31
      return messages;
×
32
    },
1✔
33
    ...mapState("users", ["messages"]),
1✔
34
  },
1✔
35
};
1✔
36
</script>
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc