Skip to content

Commit

Permalink
update comment and text color
Browse files Browse the repository at this point in the history
  • Loading branch information
TristanHoladay committed Nov 4, 2024
1 parent 2279150 commit fb247a3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pkg/k8s/client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var ServerCheck = func(k8sClient *Clients) error {
return err
}

// New creates new Kubernetes cluster clients with the option of overriding the default config
// New creates a Kubernetes cluster client with the option of overriding the default config
func New(overrides *clientcmd.ConfigOverrides) (*Clients, error) {
config, err := clientcmd.NewNonInteractiveDeferredLoadingClientConfig(
clientcmd.NewDefaultClientConfigLoadingRules(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
class:hover:bg-gray-700={!isOpen}
class:bg-gray-700={isOpen}
>
<span>{selected}</span>
<span class="text-gray-400">{selected}</span>
<ChevronDown class="ml-1 expanded-only h-5 w-5 transition duration-200 {isOpen ? '-rotate-180 transform' : ''}" />
</button>

Expand All @@ -108,7 +108,7 @@
>
{#each availableClusters as cluster}
<button
class="w-full text-white hover:bg-gray-800 block truncate text-left"
class="w-full text-gray-300 hover:bg-gray-800 block truncate text-left"
on:click={() => switchCluster(cluster)}
>
{cluster.context}.{cluster.name}
Expand Down

0 comments on commit fb247a3

Please sign in to comment.