Skip to content

Commit 40c3cfa

Browse files
v1.22.0 (#87)
* Change version v1.22.0 * Links in the notification center navigate to a non existing docs * Add embedding model → no curser not allowed when disabled * chore: update submodules --------- Co-authored-by: andhreljaKern <[email protected]>
1 parent 98cc282 commit 40c3cfa

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/components/projects/projectId/settings/embeddings/AddNewEmbeddingModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ export default function AddNewEmbeddingModal() {
301301
<Tooltip content={TOOLTIPS_DICT.PROJECT_SETTINGS.EMBEDDINGS.MODEL} placement="right" color="invert">
302302
<span className="card-title mb-0 label-text flex"><span className="cursor-help underline filtersUnderline">Model</span></span>
303303
</Tooltip>
304-
<input defaultValue="qwen3-embedding-4b" disabled className="h-9 w-full text-sm border-gray-300 rounded-md placeholder-italic border text-gray-900 pl-4 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100 disabled:opacity-50" />
304+
<input defaultValue="qwen3-embedding-4b" disabled className="h-9 w-full text-sm border-gray-300 rounded-md placeholder-italic border text-gray-900 pl-4 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100 disabled:opacity-50 disabled:cursor-not-allowed" />
305305
</>}
306306
</div>
307307
{platform && (platform.name == platformNamesDict[PlatformType.OPEN_AI] || platform.name == platformNamesDict[PlatformType.AZURE] || platform.name == platformNamesDict[PlatformType.PRIVATEMODE_AI]) && <div className="text-center mt-3">

src/components/shared/notification-center/NotificationData.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export default function NotificationData(props: NotificationDataProps) {
2727
return (<div className="ml-3 w-full">
2828
<div className="flex">
2929
<h3 className={`text-sm font-medium text-${props.textColor}-800`}>
30-
<a className="underline mr-1" href={props.notification[0].docs} target="_blank" >{props.notification[0].title}</a>
30+
<span className="mr-1" >{props.notification[0].title}</span>
3131
({props.notification[0].date}
3232
{props.notification[0].projectId && <span>&nbsp;in&nbsp;
3333
<button className="underline" onClick={() => {

src/components/shared/sidebar/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ export default function Sidebar() {
181181
<Tooltip placement="right" trigger="hover" color="invert" content={TOOLTIPS_DICT.SIDEBAR.VERSION_OVERVIEW}>
182182
<div onClick={requestVersionOverview} id="refineryVersion"
183183
className="z-50 tooltip tooltip-right cursor-pointer select-none text-white flex items-center mr-1">
184-
v1.21.5
184+
v1.22.0
185185
{hasUpdates && <Tooltip placement="right" trigger="hover" color="invert" content={TOOLTIPS_DICT.SIDEBAR.NEWER_VERSION_AVAILABLE} >
186186
<MemoIconAlertCircle className="h-5 w-5 text-yellow-700" />
187187
</Tooltip>}

0 commit comments

Comments
 (0)