Skip to content

Commit

Permalink
hippostats -> hippotable
Browse files Browse the repository at this point in the history
  • Loading branch information
thoughtspile committed Dec 7, 2023
1 parent 7f67853 commit 8f5ea38
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion astro.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import devtools from 'solid-devtools/vite';

// https://astro.build/config
export default defineConfig({
base: '/hippostats',
base: '/hippotable',
integrations: [solidJs()],
vite: {
plugins: [
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "hippostats",
"name": "hippotable",
"version": "0.1.0",
"description": "Lightweight data analysis in your browser",
"main": "dist/index.js",
Expand All @@ -13,14 +13,14 @@
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/thoughtspile/hippostats.git"
"url": "git+ssh://[email protected]/thoughtspile/hippotable.git"
},
"author": "Vladimir Klepov [email protected]",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/thoughtspile/hippostats/issues"
"url": "https://github.com/thoughtspile/hippotable/issues"
},
"homepage": "https://github.com/thoughtspile/hippostats#readme",
"homepage": "https://github.com/thoughtspile/hippotable#readme",
"dependencies": {
"@astrojs/solid-js": "^3.0.2",
"@tanstack/solid-virtual": "^3.0.0-beta.6",
Expand Down
2 changes: 1 addition & 1 deletion src/app/Uploader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function Uploader() {
<FaSolidUpload />&nbsp;Upload CSV
<input type="file" accept=".csv,.tsv,text/csv" onInput={e => persistSource(e.currentTarget.files[0])} />
</label>
<button class={styles.Button} onClick={() => persistSource('/hippostats/big.csv')}>
<button class={styles.Button} onClick={() => persistSource('/hippotable/big.csv')}>
<FaSolidEye />&nbsp;View demo
</button>
</>
Expand Down
2 changes: 1 addition & 1 deletion src/app/fs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function writeFile(file: File) {
}

function goToTable(src: string) {
const selfUrl = new URL('/hippostats/app', location.href);
const selfUrl = new URL('/hippotable/app', location.href);
selfUrl.searchParams.set('source', src);
location.assign(selfUrl);
}
Expand Down

0 comments on commit 8f5ea38

Please sign in to comment.