mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-05-24 02:09:17 +00:00
Update not bull button title (#407)
* Fix button behavior: Reverse logic for nullable/not nullable toggle * fix: updated translation key to 'nullable' and refactored button title
This commit is contained in:
parent
b19b3bb949
commit
4de49cb3cc
@ -134,9 +134,10 @@ export default function TableField({ data, tid, index }) {
|
||||
</Col>
|
||||
<Col span={3}>
|
||||
<Button
|
||||
type={data.notNull ? "primary" : "tertiary"}
|
||||
title={t("not_null")}
|
||||
theme={data.notNull ? "solid" : "light"}
|
||||
|
||||
type={data.notNull ? "tertiary" : "primary"}
|
||||
title={t("nullable")}
|
||||
theme={data.notNull ? "light" : "solid"}
|
||||
onClick={() => {
|
||||
setUndoStack((prev) => [
|
||||
...prev,
|
||||
|
@ -113,6 +113,7 @@ const en = {
|
||||
type: "Type",
|
||||
null: "Null",
|
||||
not_null: "Not null",
|
||||
nullable: "Nullable",
|
||||
primary: "Primary",
|
||||
unique: "Unique",
|
||||
autoincrement: "Autoincrement",
|
||||
|
@ -113,6 +113,7 @@ const tm = {
|
||||
type: "வகை",
|
||||
null: "பூஜ்ஜியம்",
|
||||
not_null: "பூஜ்ஜியம் அல்ல",
|
||||
nullable: "காலியாக அனுமதி",
|
||||
primary: "முதன்மை",
|
||||
unique: "தனித்துவம்",
|
||||
autoincrement: "தானாக அதிகரிப்பு",
|
||||
|
Loading…
Reference in New Issue
Block a user