Skip to content

Commit

Permalink
Merge pull request #163 from data-to-insight/refactor/repo-rename
Browse files Browse the repository at this point in the history
refactor(app, landing, index): adjust to repo renaming. update wheels
  • Loading branch information
tab1tha authored Oct 10, 2023
2 parents 8cd6984 + 2fd6048 commit f885f6c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
Binary file not shown.
Binary file not shown.
10 changes: 5 additions & 5 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
<noscript>You need to enable JavaScript to run this app.</noscript>
<div
id="root"
data-wheelPath="/bin/dist/cin_validator-0.1.0-py3-none-any.whl"
data-tool="ToolCIN"
data-wheelPath="/bin/dist/csc_validator_be_cin-0.1.3-py3-none-any.whl"
data-tool="ToolCIN"
></div>
</body>
</html>
<!--
data-wheelPath="/bin/dist/lac_validator-1.0.3-py3-none-any.whl"

<!-- data-wheelPath="/bin/dist/csc_validator_be_903-0.1.0-py3-none-any.whl"
data-tool="Tool903" -->
<!-- data-wheelPath="/bin/dist/cin_validator-0.1.0-py3-none-any.whl"
<!-- data-wheelPath="/bin/dist/csc_validator_be_cin-0.1.3-py3-none-any.whl"
data-tool="ToolCIN" -->
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ function App(props: AppProps) {
}
sourceLink='https://github.com/data-to-insight/cin-validator-fe'
/>
<Version versionNumber='0.1.3' sourceLink='https://github.com/data-to-insight/CIN-validator'/>
<Version versionNumber='2.0.0' sourceLink='https://github.com/data-to-insight/quality-lac-data-beta-validator'/>
<Version versionNumber='0.1.3' sourceLink='https://github.com/data-to-insight/csc-validator-be-cin'/>
<Version versionNumber='0.1.0' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
</>
) : (
<Loader type='cover' label='Loading Python API' />
Expand Down
4 changes: 2 additions & 2 deletions src/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const Landing = (props: LandingProps) => {
}
sourceLink='https://github.com/data-to-insight/cin-validator-fe'
/>
<Version versionNumber='0.1.3' sourceLink='https://github.com/data-to-insight/CIN-validator'/>
<Version versionNumber='2.0.0' sourceLink='https://github.com/data-to-insight/quality-lac-data-beta-validator'/>
<Version versionNumber='0.1.3' sourceLink='https://github.com/data-to-insight/csc-validator-be-cin'/>
<Version versionNumber='0.1.0' sourceLink='https://github.com/data-to-insight/csc-validator-be-903'/>
</Container>
</ThemeProvider>
);
Expand Down
4 changes: 2 additions & 2 deletions src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const rootEl = document.getElementById('root') as HTMLElement;
// set some sensible defaults, in case we bail on attribute selection
const tool = rootEl.getAttribute('data-tool') || Tool.Tool903;
const wheelPath =
rootEl.getAttribute('data-wheelpath') ||
'/bin/dist/lac_validator-1.0.3-py3-none-any.whl';
rootEl.getAttribute('data-wheelpath') ||
'/bin/dist/csc_validator_be_903-0.1.0-py3-none-any.whl';

const Core = () => {
const CookieGate = withCookieGate({
Expand Down

0 comments on commit f885f6c

Please sign in to comment.