Use fixed width for REST query verbs

This commit is contained in:
Andrew Kingston 2021-12-16 11:56:14 +00:00
parent 49e813cc6c
commit af8d55ef32
2 changed files with 2 additions and 1 deletions

View File

@ -133,5 +133,6 @@
.iconText {
margin-top: 1px;
font-size: var(--spectrum-global-dimension-font-size-50);
flex: 0 0 34px;
}
</style>

View File

@ -84,7 +84,7 @@ export function customQueryIconText(datasource, query) {
case "read":
return "GET"
case "delete":
return "DELETE"
return "DEL"
case "patch":
return "PATCH"
}