Merge pull request #7082 from coollabsio/update-docker-run-command-and-styles
Enhance resource selection UI and update run script
This commit is contained in:
commit
fa7b4c46a7
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"onWorktreeCreate": "cp $GCOOL_ROOT_PATH/.env .",
|
"onWorktreeCreate": "cp $GCOOL_ROOT_PATH/.env .",
|
||||||
"run": "clean && spin up"
|
"run": "docker rm -f coolify coolify-realtime coolify-minio coolify-testing-host coolify-redis coolify-db coolify-mail coolify-vite && spin up"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@
|
||||||
<div class="pb-4">Deploy resources, like Applications, Databases, Services...</div>
|
<div class="pb-4">Deploy resources, like Applications, Databases, Services...</div>
|
||||||
<div x-data="searchResources()">
|
<div x-data="searchResources()">
|
||||||
@if ($current_step === 'type')
|
@if ($current_step === 'type')
|
||||||
<div x-init="window.addEventListener('scroll', () => isSticky = window.pageYOffset > 100)" class="sticky z-10 top-10 py-2">
|
<div x-init="window.addEventListener('scroll', () => isSticky = window.pageYOffset > 100)" class="sticky z-10 top-10 py-2 bg-white/95 dark:bg-base/95 backdrop-blur-sm">
|
||||||
<div class="flex gap-2 items-start">
|
<div class="flex gap-2 items-start">
|
||||||
<input autocomplete="off" x-ref="searchInput" class="input-sticky flex-1"
|
<input autocomplete="off" x-ref="searchInput" class="input-sticky flex-1"
|
||||||
:class="{ 'input-sticky-active': isSticky }" x-model="search" placeholder="Type / to search..."
|
:class="{ 'input-sticky-active': isSticky }" x-model="search" placeholder="Type / to search..."
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue