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 api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/api",
"version": "14.4.2",
"version": "14.4.3",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion dashboard/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/dashboard",
"version": "14.4.2",
"version": "14.4.3",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ export const PreviewQueryAndVars = observer(({ queryModel }: Props) => {
return (
<Tabs
defaultValue="看板变量预览"
w="40%"
maw="600px"
styles={{
root: {
borderRadius: 4,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export const InputStyles = {
},
input: {
paddingInlineStart: 'var(--input-padding-inline-start)',
height: 'auto',
color: 'black',
fontFamily: 'monospace',
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export const LinkMetricsToVariables = observer(({ queryModel }: Props) => {

<Table withTableBorder withColumnBorders layout="fixed" styles={MetricTableStyles}>
<colgroup>
<col style={{ width: 250 }} />
<col style={{ width: '49%' }} />
<col />
<col style={{ width: 130 }} />
<col style={{ width: 40 }} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const QueryTabs = observer(({ queryModel }: Props) => {
const [activeTab, setActiveTab] = useState<string | null>('编辑查询');

return (
<Tabs color="red" defaultValue="编辑查询" styles={TabsStyles} value={activeTab} onChange={setActiveTab}>
<Tabs color="red" defaultValue="编辑查询" styles={TabsStyles} value={activeTab} onChange={setActiveTab} w="60%">
<Tabs.List>
<Tabs.Tab value="编辑查询" size="xs">
编辑查询
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": "@devtable/root",
"version": "14.4.2",
"version": "14.4.3",
"private": true,
"workspaces": [
"api",
Expand Down
2 changes: 1 addition & 1 deletion settings-form/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devtable/settings-form",
"version": "14.4.2",
"version": "14.4.3",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@devtable/website",
"private": true,
"license": "Apache-2.0",
"version": "14.4.2",
"version": "14.4.3",
"scripts": {
"dev": "vite",
"preview": "vite preview"
Expand Down
Loading