mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-22 00:01:34 +00:00
fix: small table fixes
This commit is contained in:
@@ -128,7 +128,6 @@
|
||||
minTimeSet: string | undefined,
|
||||
maxTimeSet: string | undefined
|
||||
) {
|
||||
console.log(minTimeSet, maxTimeSet)
|
||||
let minTimeSetDate = minTimeSet ? new Date(minTimeSet) : undefined
|
||||
let maxTimeSetDate = maxTimeSet ? new Date(maxTimeSet) : undefined
|
||||
if (minTimeSetDate && maxTimeSetDate) {
|
||||
|
||||
@@ -411,7 +411,12 @@
|
||||
{value}
|
||||
</a>
|
||||
{:else}
|
||||
{@const txt = typeof value == 'object' ? JSON.stringify(value) : value}
|
||||
{@const txt =
|
||||
value == undefined
|
||||
? ''
|
||||
: typeof value != 'string'
|
||||
? JSON.stringify(value)
|
||||
: value}
|
||||
<Popover
|
||||
placement="bottom"
|
||||
notClickable
|
||||
|
||||
@@ -1468,7 +1468,7 @@
|
||||
gitSyncSettings.repositories = [
|
||||
...gitSyncSettings.repositories,
|
||||
{
|
||||
script_path: 'hub/8717/sync-script-to-git-repo-windmill',
|
||||
script_path: 'hub/8720/sync-script-to-git-repo-windmill',
|
||||
git_repo_resource_path: '',
|
||||
use_individual_branch: false,
|
||||
exclude_types_override: {
|
||||
|
||||
Reference in New Issue
Block a user