Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/web/components/PreviewPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export function PreviewPanel({ storyName, fileName, authFetch, onPublish, publis
const isGenesis = fileName === "genesis.md";
const isPlot = fileName ? /^plot-\d+\.md$/.test(fileName) : false;
const isPublished = fileData?.status === "published" || fileData?.status === "published-not-indexed";
const charLimit = isGenesis ? 1000 : isPlot ? 10000 : null;
const charLimit = (isGenesis || isPlot) ? 10000 : null;
// Don't show over-limit warning for already-published files
const overLimit = !isPublished && charLimit !== null && charCount > charLimit;

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "plotlink-ows",
"version": "1.0.22",
"version": "1.0.23",
"bin": {
"plotlink-ows": "./bin/plotlink-ows.js"
},
Expand Down
Loading