forked from Qortal-Forker/q-support
FeeHistoryModal is now editable by app owner
Fixed bug with feeFilter's Time Check in FeePricePublish.ts feeAmount in FeeData.tsx now fetches the newest price of a given FeeType instead of using a hardcoded value Fixed bug that prevented app from working if no FeeData was found Reverted publishing content as file back to base64 Vite builds with target "esnext" to allow top level await.
This commit is contained in:
@@ -161,7 +161,7 @@ export const CommentEditor = ({
|
||||
action: "PUBLISH_QDN_RESOURCE",
|
||||
name: name,
|
||||
service: "BLOG_COMMENT",
|
||||
file: stringToFile(value),
|
||||
data64: utf8ToBase64(value),
|
||||
identifier: identifier,
|
||||
});
|
||||
|
||||
|
||||
@@ -1,8 +1,11 @@
|
||||
import { defineConfig } from 'vite'
|
||||
import react from '@vitejs/plugin-react'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
base: ""
|
||||
})
|
||||
import { defineConfig } from "vite";
|
||||
import react from "@vitejs/plugin-react";
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [react()],
|
||||
base: "",
|
||||
build: {
|
||||
target: "esnext", //browsers can handle the latest ES features
|
||||
},
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user