Added actix-files and its dependencies (http-range, mime_guess, unicase, v_htmlescape) to enable static file functionality in the botserver. This will allow serving static assets and files through the web server. The change includes all required transitive dependencies for proper file handling and MIME type detection.
14 lines
639 B
HTML
14 lines
639 B
HTML
<template>
|
||
<div class="toolbar">
|
||
<button onclick="app.bold()">📝 Bold</button>
|
||
<button onclick="app.addRow()">➕ Add Row</button>
|
||
<button onclick="app.addColumn()">➕ Add Column</button>
|
||
<button onclick="app.deleteRow()">➖ Delete Row</button>
|
||
<button onclick="app.deleteColumn()">➖ Delete Column</button>
|
||
<button onclick="app.sort()">🔽 Sort A-Z</button>
|
||
<button onclick="app.sum()">Σ Sum</button>
|
||
<button onclick="app.average()">📊 Average</button>
|
||
<button onclick="app.clearCell()">🗑️ Clear</button>
|
||
<button onclick="app.exportData()">💾 Export</button>
|
||
</div>
|
||
</template>
|