Skip to content

Commit

Permalink
new tour steps and changes
Browse files Browse the repository at this point in the history
  • Loading branch information
frostyfan109 committed Sep 11, 2024
1 parent 10153a6 commit 456e3cd
Show file tree
Hide file tree
Showing 5 changed files with 342 additions and 74 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"@ant-design/plots": "^1.0.9",
"@ant-design/pro-form": "^1.74.7",
"@antv/g2plot": "^2.4.8",
"@floating-ui/dom": "^1.6.10",
"@gatsbyjs/reach-router": "^1.3.9",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
Expand All @@ -32,11 +33,12 @@
"react-infinite-scroll-component": "^6.1.0",
"react-shepherd": "^4.3.0",
"react-time-until": "^1.0.6",
"shepherd.js": "^11.2.0",
"shepherd.js": "^13.0.3",
"styled-components": "^5.3.0",
"timeago-react": "^3.0.2",
"use-debounce": "^7.0.0",
"uuid": "^9.0.1",
"wait-for-element": "^1.0.2",
"web-vitals": "^1.0.1"
},
"scripts": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const ConceptSearchResults = () => {
<Fragment>
<div className="results" style={{ flexGrow: 1 }}>
{ error.message ? (
<span style={{ marginTop: -144, padding: "0 6px" }}>{ error.message }</span>
<span className="results-error" style={{ marginTop: -144, padding: "0 6px" }}>{ error.message }</span>
) : concepts.length === 0 && !isLoadingConcepts ? (
<Empty style={{ marginTop: -24 }} description={
<Text type="secondary">No results were found for &quot;{ query }&quot;</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const ExpandedResultsLayout = () => {
<Spin style={{ display: 'block', margin: '4rem', flexGrow: 1 }} />
)}
{ error.message ? (
<span style={{ marginTop: -144, padding: "0 6px" }}>{ error.message }</span>
<span className="results-error" style={{ marginTop: -144, padding: "0 6px" }}>{ error.message }</span>
) : concepts.length === 0 && !isLoadingConcepts ? (
<Empty style={{ marginTop: -24 }} description={
<Text type="secondary">No results were found for &quot;{ query }&quot;</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const VariableViewLayout = () => {
) : (
<Fragment>
{ error.message ? (
<span style={{ marginTop: -144, padding: "0 6px" }}>{ error.message }</span>
<span className="results-error" style={{ marginTop: -144, padding: "0 6px" }}>{ error.message }</span>
) : query && totalVariableResults === 0 ? (
<Empty style={{ marginTop: -24 }} description={
<Text type="secondary">No results were found for &quot;{ query }&quot;</Text>
Expand Down
Loading

0 comments on commit 456e3cd

Please sign in to comment.