Use fixed width for REST query verbs
This commit is contained in:
parent
49e813cc6c
commit
af8d55ef32
|
@ -133,5 +133,6 @@
|
||||||
.iconText {
|
.iconText {
|
||||||
margin-top: 1px;
|
margin-top: 1px;
|
||||||
font-size: var(--spectrum-global-dimension-font-size-50);
|
font-size: var(--spectrum-global-dimension-font-size-50);
|
||||||
|
flex: 0 0 34px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -84,7 +84,7 @@ export function customQueryIconText(datasource, query) {
|
||||||
case "read":
|
case "read":
|
||||||
return "GET"
|
return "GET"
|
||||||
case "delete":
|
case "delete":
|
||||||
return "DELETE"
|
return "DEL"
|
||||||
case "patch":
|
case "patch":
|
||||||
return "PATCH"
|
return "PATCH"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue