Merge remote-tracking branch 'origin/develop' into migrate/vuex-to-pinia

This commit is contained in:
Henry Jameson 2025-01-30 18:08:05 +02:00
commit 58e18d48df
489 changed files with 31167 additions and 9871 deletions

View file

@ -2,6 +2,7 @@ import { useReportsStore } from '../../stores/reports'
import Select from '../select/select.vue'
import StatusContent from '../status_content/status_content.vue'
import Timeago from '../timeago/timeago.vue'
import RichContent from 'src/components/rich_content/rich_content.jsx'
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
const Report = {
@ -11,7 +12,8 @@ const Report = {
components: {
Select,
StatusContent,
Timeago
Timeago,
RichContent
},
computed: {
report () {

View file

@ -1,5 +1,3 @@
@import "../../variables";
.Report {
.report-content {
margin: 0.5em 0 1em;
@ -10,12 +8,8 @@
}
.reported-status {
border: 1px solid $fallback--faint;
border-color: var(--faint, $fallback--faint);
border-radius: $fallback--inputRadius;
border-radius: var(--inputRadius, $fallback--inputRadius);
color: $fallback--text;
color: var(--text, $fallback--text);
border: 1px solid var(--border);
border-radius: var(--roundness);
display: block;
padding: 0.5em;
margin: 0.5em 0;

View file

@ -17,7 +17,7 @@
<Select
:id="report-state"
v-model="state"
class="form-control"
class="input form-control"
>
<option
v-for="state in ['open', 'closed', 'resolved']"