Commit 40518fe2 authored by Benedikt Heinrichs's avatar Benedikt Heinrichs
Browse files

Fix: Slot Migration

parent 1fb096bb
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@
  },
  "dependencies": {
    "@coscine/api-client": "^3.8.0",
    "@coscine/form-generator": "^4.0.1",
    "@coscine/form-generator": "^4.0.2",
    "@dynamic-mapper/mapper": "^1.10.4",
    "@pinia/testing": "^0.1.3",
    "@rdfjs-elements/formats-pretty": "^0.6.4",
+1 −1
Original line number Diff line number Diff line
@@ -187,7 +187,7 @@
        :placeholder="$t('form.project.projectOrganization')"
        @search-change="retrieveMoreOrganizations"
      >
        <template slot="afterList">
        <template #afterList>
          <div
            v-if="organizations.length && !organizationsComplete"
            v-observe-visibility="retrieveMoreOrganizations"
+5 −5
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@
          @update:modelValue="setSelectedApplicationProfile"
          @search-change="applicationProfileSearchChange"
        >
          <template slot="afterList">
          <template #afterList>
            <div
              v-if="groupedApplicationProfiles.length && !allResultsLoaded"
              v-observe-visibility="reachedEndOfAPList"
@@ -67,12 +67,12 @@
              </div>
            </div>
          </template>
          <span slot="noResult">
          <template #noResult>
            {{ $t("page.createResource.multiselect.noResults") }}
          </span>
          <span slot="noOptions">
          </template>
          <template #noOptions>
            {{ $t("page.createResource.multiselect.noOptions") }}
          </span>
          </template>
        </multiselect>

        <!-- Create Button -->
+4 −4
Original line number Diff line number Diff line
@@ -49,12 +49,12 @@
          }"
          @update:modelValue="setSelectedResourceTypeInformation"
        >
          <span slot="noResult">
          <template #noResult>
            {{ $t("page.createResource.multiselect.noResults") }}
          </span>
          <span slot="noOptions">
          </template>
          <template #noOptions>
            {{ $t("page.createResource.multiselect.noOptions") }}
          </span>
          </template>
        </multiselect>

        <!-- Resource Text Field (see condition) -->
+8 −8
Original line number Diff line number Diff line
@@ -102,12 +102,12 @@
        :disabled="!isGitlabConnectionSuccessful"
        @update:modelValue="setSelectedGitLabProject"
      >
        <span slot="noResult">
        <template #noResult>
          {{ $t("page.createResource.multiselect.noResults") }}
        </span>
        <span slot="noOptions">
        </template>
        <template #noOptions>
          {{ $t("page.createResource.multiselect.noOptions") }}
        </span>
        </template>
      </multiselect>
    </CoscineFormGroup>

@@ -135,12 +135,12 @@
        :disabled="!(isGitlabConnectionSuccessful && gitlabInformation.project)"
        @update:modelValue="setSelectedGitLabReference"
      >
        <span slot="noResult">
        <template #noResult>
          {{ $t("page.createResource.multiselect.noResults") }}
        </span>
        <span slot="noOptions">
        </template>
        <template #noOptions>
          {{ $t("page.createResource.multiselect.noOptions") }}
        </span>
        </template>
      </multiselect>

      <template #hint>
Loading