Skip to content
This repository was archived by the owner on Jul 28, 2025. It is now read-only.

Commit fa5443e

Browse files
committed
typo constants
1 parent 44ea4f5 commit fa5443e

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

manifest-beta.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
"id": "dbfolder",
33
"name": "DB Folder",
44
"version": "3.1.0-beta.1",
5-
"minAppVersion": "0.16.3",
5+
"minAppVersion": "1.1.1",
66
"description": "Folder with the capability to store and retrieve data from a folder like database",
77
"author": "RafaelGB",
88
"authorUrl": "https://github.com/RafaelGB/obsidian-bd-folder",
9-
"isDesktopOnly": false
9+
"isDesktopOnly": false,
10+
"fundingUrl": "https://www.buymeacoffee.com/5tsytn22v9Z"
1011
}

src/components/Table.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ import TableActions from "components/tableActions/TableActions";
4747
import PaginationTable from "components/navbar/PaginationTable";
4848

4949
const defaultColumn: Partial<ColumnDef<RowDataType>> = {
50-
minSize: DatabaseLimits.MIN_COLUMN_HEIGHT,
51-
maxSize: DatabaseLimits.MAX_COLUMN_HEIGHT,
50+
minSize: DatabaseLimits.MIN_COLUMN_WIDTH,
51+
maxSize: DatabaseLimits.MAX_COLUMN_WIDTH,
5252
cell: DefaultCell,
5353
header: DefaultHeader,
5454
enableResizing: true,

src/helpers/Constants.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ export const DatabaseLimits = Object.freeze({
3939
MAX_COLUMNS: 100,
4040
MAX_ROWS: 99999,
4141
MAX_OPTIONS: 100,
42-
MIN_COLUMN_HEIGHT: 30,
43-
MAX_COLUMN_HEIGHT: 350,
42+
MIN_COLUMN_WIDTH: 30,
43+
MAX_COLUMN_WIDTH: 350,
4444
});
4545

4646
export const MetadataColumns = Object.freeze({

0 commit comments

Comments
 (0)