3
0
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:
Qortal Dev 2024-07-26 15:46:08 -06:00
parent 75beecd26f
commit 19a5754d30
2 changed files with 12 additions and 9 deletions

View File

@ -161,7 +161,7 @@ export const CommentEditor = ({
action: "PUBLISH_QDN_RESOURCE",
name: name,
service: "BLOG_COMMENT",
file: stringToFile(value),
data64: utf8ToBase64(value),
identifier: identifier,
});

View File

@ -1,8 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
base: ""
})
base: "",
build: {
target: "esnext", //browsers can handle the latest ES features
},
});