fix: project page in app not receiving instance context & port version page to app (#6618)

* fix: project page in app not receiving instance context

* prepr

* feat: port version page to app

* commonize keys

* whoops bring those back
This commit is contained in:
Prospector
2026-07-06 15:17:25 -07:00
committed by GitHub
parent 8d20fd82db
commit 0905ea72f6
12 changed files with 262 additions and 445 deletions
@@ -38,7 +38,7 @@ const messages = defineMessages({
},
addFilesModalSearchPlaceholder: {
id: 'external-files.permissions-card.add-files-modal.search-placeholder',
defaultMessage: 'Search files',
defaultMessage: 'Search files...',
},
addFilesModalNoSearchResults: {
id: 'external-files.permissions-card.add-files-modal.no-search-results',
@@ -216,7 +216,7 @@ defineExpose({ show, hide })
:icon="SearchIcon"
type="text"
autocomplete="off"
placeholder="Search external projects"
placeholder="Search external projects..."
clearable
wrapper-class="flex-1 min-w-[12rem]"
:disabled="addFilesMutation.isPending.value"
@@ -237,14 +237,14 @@ defineExpose({ show, hide })
>
<span class="text-contrast font-semibold">
<template v-if="searchNeedsInput"> Enter a search term to get started </template>
<template v-else-if="isLoading"> Loading external projects </template>
<template v-else-if="isLoading"> Loading external projects...</template>
<template v-else> No projects matched that search </template>
</span>
<span class="text-secondary text-sm">
<template v-if="searchNeedsInput">
Type at least 3 characters of a project's title to begin browsing.
</template>
<template v-else-if="isLoading"> Loading external projects </template>
<template v-else-if="isLoading"> Loading external projects...</template>
<template v-else> No projects matched that search </template>
</span>
</div>