-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(notebook): Disable public/private button
Won't be able to implement feature until NotebookEdit is finalised Signed-off-by: Gordon Smith <GordonJSmith@gmail.com>
- Loading branch information
1 parent
72ffebc
commit bab8eba
Showing
11 changed files
with
11,625 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
r := RECORD | ||
UNSIGNED4 id; | ||
VARSTRING name; | ||
VARSTRING nationality; | ||
VARSTRING sex; | ||
VARSTRING date_of_birth; | ||
REAL height; | ||
REAL weight; | ||
VARSTRING sport; | ||
UNSIGNED4 gold; | ||
UNSIGNED4 silver; | ||
UNSIGNED4 bronze; | ||
VARSTRING info; | ||
END; | ||
|
||
d := DATASET('~::athletes.csv', r, CSV); | ||
|
||
d2 := d(date_of_birth != 'date_of_birth'); | ||
|
||
OUTPUT(d2, NAMED('athletes'), ALL); |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,4 +84,3 @@ export const WUOutputTables: React.FunctionComponent<WUOutput> = (output: WUOutp | |
} | ||
</Pivot>; | ||
}; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters