Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/unit-tests-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
cache: 'npm'

- name: Clean install dependencies
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 22
node-version: 24
cache: 'npm'

- name: Clean install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.11.1
24.13.0
2 changes: 1 addition & 1 deletion components/TagComponent.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, computed, defineEmits, defineProps } from 'vue';
import { ref, computed } from 'vue';
import XmarkIcon from '@/components/icons/XmarkIcon.vue';

const props = defineProps({
Expand Down
2 changes: 1 addition & 1 deletion components/TextInput.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, watch, defineExpose, computed } from 'vue';
import { ref, watch, computed } from 'vue';
import ExclamationTriangleIcon from '@/components/icons/ExclamationIcon.vue';

const props = defineProps({
Expand Down
2 changes: 1 addition & 1 deletion components/comments/ArchivedCommentText.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { computed, defineProps } from 'vue';
import { computed } from 'vue';
import { useQuery } from '@vue/apollo-composable';
import { GET_COMMENT_ISSUE } from '@/graphQLData/mod/queries';
import ArchiveBox from '@/components/icons/ArchiveBox.vue';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { computed, defineProps } from 'vue';
import { computed } from 'vue';
import { useQuery } from '@vue/apollo-composable';
import { GET_DISCUSSION_ISSUE } from '@/graphQLData/mod/queries';
import ArchiveBox from '@/components/icons/ArchiveBox.vue';
Expand Down
2 changes: 1 addition & 1 deletion components/discussion/detail/DiscussionCommentsWrapper.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {
} from '@/__generated__/graphql';
import type { ApolloCache, NormalizedCacheObject } from '@apollo/client/core';
import type { PropType } from 'vue';
import { computed, defineProps, ref, onMounted } from 'vue';
import { computed, ref, onMounted } from 'vue';
import { getSortFromQuery } from '@/components/comments/getSortFromQuery';
import type { CreateEditCommentFormValues } from '@/types/Comment';
import CommentSection from '@/components/comments/CommentSection.vue';
Expand Down
1 change: 0 additions & 1 deletion components/discussion/detail/MarkAsAnsweredButton.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script lang="ts" setup>
import { defineProps } from 'vue';
import CheckCircleIcon from '@/components/icons/CheckCircleIcon.vue';
import { useMutation } from '@vue/apollo-composable';
import {
Expand Down
2 changes: 1 addition & 1 deletion components/discussion/form/CreateEditDiscussionFields.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, computed, onMounted, defineProps, nextTick } from 'vue';
import { ref, computed, onMounted, nextTick } from 'vue';
import type { ApolloError } from '@apollo/client/errors';
import TextEditor from '@/components/TextEditor.vue';
import FormRow from '@/components/FormRow.vue';
Expand Down
2 changes: 1 addition & 1 deletion components/event/detail/ArchivedEventInfoBanner.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { computed, defineProps } from 'vue';
import { computed } from 'vue';
import { useQuery } from '@vue/apollo-composable';
import { GET_EVENT_ISSUE } from '@/graphQLData/mod/queries';
import ArchiveBox from '@/components/icons/ArchiveBox.vue';
Expand Down
2 changes: 1 addition & 1 deletion components/event/detail/EventBody.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts" setup>
import type { PropType } from 'vue';
import { defineProps, defineEmits, computed } from 'vue';
import { computed } from 'vue';
import type { Event } from '@/__generated__/graphql';
import { usernameVar } from '@/cache';
import EventDescriptionEditForm from './EventDescriptionEditForm.vue';
Expand Down
2 changes: 1 addition & 1 deletion components/mod/SuspendUserButton.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts" setup>
import { defineProps, computed } from 'vue';
import { computed } from 'vue';
import type { PropType } from 'vue';
import UserPlus from '../icons/UserPlus.vue';
import UserMinus from '../icons/UserMinus.vue';
Expand Down
Loading
Loading