nudge
This commit is contained in:
parent
e17e355247
commit
d405ff5ffb
2 changed files with 2 additions and 2 deletions
|
@ -71,7 +71,7 @@ function ShowPage(props: Props) {
|
||||||
const claimExists = claim !== null && claim !== undefined;
|
const claimExists = claim !== null && claim !== undefined;
|
||||||
const haventFetchedYet = claim === undefined;
|
const haventFetchedYet = claim === undefined;
|
||||||
const isMine = claim && claim.is_my_output;
|
const isMine = claim && claim.is_my_output;
|
||||||
const { contentName, isChannel } = parseURI(uri);
|
const { contentName, isChannel } = parseURI(uri); // deprecated contentName - use streamName and channelName
|
||||||
const { push } = useHistory();
|
const { push } = useHistory();
|
||||||
const isCollection = claim && claim.value_type === 'collection';
|
const isCollection = claim && claim.value_type === 'collection';
|
||||||
const resolvedCollection = collection && collection.id; // not null
|
const resolvedCollection = collection && collection.id; // not null
|
||||||
|
|
|
@ -69,7 +69,7 @@ let baseConfig = {
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
// Allows imports for all directories inside '/ui'
|
// Allows imports for all directories inside '/ui' :)
|
||||||
resolve: {
|
resolve: {
|
||||||
modules: [UI_ROOT, 'node_modules', __dirname],
|
modules: [UI_ROOT, 'node_modules', __dirname],
|
||||||
extensions: ['.js', '.jsx', '.json', '.scss'],
|
extensions: ['.js', '.jsx', '.json', '.scss'],
|
||||||
|
|
Loading…
Reference in a new issue