mirror of
https://github.com/Qortal/q-support.git
synced 2025-02-11 17:55:50 +00:00
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:
parent
75beecd26f
commit
19a5754d30
@ -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
|
||||
},
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user