Compare commits
No commits in common. "fcfce5acd4b5c621eb9f7ab7e5bdc38f90b531b0" and "d9a7e3cd04753087ae5f0dfa391598f0b1a1fb71" have entirely different histories.
fcfce5acd4
...
d9a7e3cd04
|
@ -381,7 +381,7 @@ module.exports = {
|
|||
snapshotIntervals: [],
|
||||
},
|
||||
media: {
|
||||
path: './media',
|
||||
path: '/home/niels/Projects/traxxx/media',
|
||||
transferSources: {
|
||||
local: 'http://localhost:5000/media',
|
||||
s3: 'https://cdn.traxxx.me',
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
{
|
||||
"name": "traxxx-web",
|
||||
"version": "0.9.3",
|
||||
"version": "0.9.2",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"version": "0.9.3",
|
||||
"version": "0.9.2",
|
||||
"dependencies": {
|
||||
"@brillout/json-serializer": "^0.5.8",
|
||||
"@dicebear/collection": "^7.0.5",
|
||||
|
|
|
@ -70,5 +70,5 @@
|
|||
"postcss-custom-media": "^10.0.2",
|
||||
"postcss-nesting": "^12.0.2"
|
||||
},
|
||||
"version": "0.9.3"
|
||||
"version": "0.9.2"
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ const pageContext = inject('pageContext');
|
|||
const profile = pageContext.pageProps.profile;
|
||||
|
||||
function abbreviateNumber(number) {
|
||||
return number?.toLocaleString('en-US', { notation: 'compact' }) || 0;
|
||||
return number.toLocaleString('en-US', { notation: 'compact' });
|
||||
}
|
||||
|
||||
console.log(profile.stashes);
|
||||
|
|
Loading…
Reference in New Issue