Browse Source

fix: progress bar issue (#2957)

tags/0.5.11
legao 1 year ago
parent
commit
5e60204832
No account linked to committer's email address
3 changed files with 7 additions and 7 deletions
  1. 1
    1
      web/app/(commonLayout)/datasets/DatasetCard.tsx
  2. 1
    1
      web/package.json
  3. 5
    5
      web/yarn.lock

+ 1
- 1
web/app/(commonLayout)/datasets/DatasetCard.tsx View File



return ( return (
<> <>
<Link href={`/datasets/${dataset.id}/documents`} className={cn(style.listItem)}>
<Link href={`/datasets/${dataset.id}/documents`} className={cn(style.listItem)} data-disable-nprogress={true}>
<div className={style.listItemTitle}> <div className={style.listItemTitle}>
<AppIcon size='small' className={cn(!dataset.embedding_available && style.unavailable)} /> <AppIcon size='small' className={cn(!dataset.embedding_available && style.unavailable)} />
<div className={cn(style.listItemHeading, !dataset.embedding_available && style.unavailable)}> <div className={cn(style.listItemHeading, !dataset.embedding_available && style.unavailable)}>

+ 1
- 1
web/package.json View File

"mermaid": "10.4.0", "mermaid": "10.4.0",
"negotiator": "^0.6.3", "negotiator": "^0.6.3",
"next": "^14.0.4", "next": "^14.0.4",
"next-nprogress-bar": "^2.1.2",
"next-nprogress-bar": "^2.3.8",
"qrcode.react": "^3.1.0", "qrcode.react": "^3.1.0",
"qs": "^6.11.1", "qs": "^6.11.1",
"rc-textarea": "^1.5.2", "rc-textarea": "^1.5.2",

+ 5
- 5
web/yarn.lock View File

resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"
integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==


next-nprogress-bar@^2.1.2:
version "2.1.2"
resolved "https://registry.npmjs.org/next-nprogress-bar/-/next-nprogress-bar-2.1.2.tgz"
integrity sha512-2Df5d7fr6uPx+BX8MkoWCfl+RjG+uWI5mA399e5sEe8mbT3q/GIUvCXLzBgJBIISpKuMmdLAOYEzqpjlsRVOWw==
next-nprogress-bar@^2.3.8:
version "2.3.9"
resolved "https://registry.yarnpkg.com/next-nprogress-bar/-/next-nprogress-bar-2.3.9.tgz#f271abb7e1f6bc95b024256f8dcec041dd63bcdb"
integrity sha512-X4nJqpyXcqpXwcSyCzed8hKWnOCqzLaINVHdwokKpuJ76Qj8EGB9mPqwCcFhgXsvIdlzPLAKxq6ajPI9tSYmig==
dependencies: dependencies:
nprogress "^0.2.0" nprogress "^0.2.0"




nprogress@^0.2.0: nprogress@^0.2.0:
version "0.2.0" version "0.2.0"
resolved "https://registry.npmjs.org/nprogress/-/nprogress-0.2.0.tgz"
resolved "https://registry.yarnpkg.com/nprogress/-/nprogress-0.2.0.tgz#cb8f34c53213d895723fcbab907e9422adbcafb1"
integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA== integrity sha512-I19aIingLgR1fmhftnbWWO3dXc0hSxqHQHQb3H8m+K3TnEn/iSeTZZOyvKXWqQESMwuUVnatlCnZdLBZZt2VSA==


nth-check@^2.0.1: nth-check@^2.0.1:

Loading…
Cancel
Save