Changed location of temp directories
(shouldn't have comitted these in the first place but oh well)
This commit is contained in:
parent
7cec31ae98
commit
09a2016ca0
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "C:\\Users\\Paoda\\Documents\\programming\\neomelodii"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -71,7 +71,7 @@ export default class Body extends React.Component {
|
|||
};
|
||||
|
||||
if (!Settings.has("tableJSON")) {
|
||||
let tableJSON = await generate("C:\\Users\\Paoda\\Downloads", template);
|
||||
let tableJSON = await generate("C:\\Users\\Paoda\\Downloads\\Music", template);
|
||||
|
||||
console.log("Initialize: ", tableJSON)
|
||||
this.setState({ table: tableJSON });
|
||||
|
|
|
@ -58,7 +58,7 @@ export default class SettingsManager extends Modal {
|
|||
if (Settings.has("tableJSON")) Settings.delete("tableJSON");
|
||||
else console.info("There was no Table Saved to Delete!")
|
||||
|
||||
const tableJSON = await generate("C:\\Users\\Paoda\\Downloads", this.template);
|
||||
const tableJSON = await generate("C:\\Users\\Paoda\\Downloads\\Music", this.template);
|
||||
|
||||
Emitter.emit("newTable", tableJSON);
|
||||
|
||||
|
|
Reference in New Issue