Skip to content

Commit

Permalink
fix(frontend): fix minor ui styles (#3387)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Nov 21, 2023
1 parent 0c26d99 commit 7bd72f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion web/src/components/Settings/common/Settings.styled.ts
Expand Up @@ -43,10 +43,10 @@ export const SwitchContainer = styled.div`
align-items: center;
display: flex;
gap: 8px;
margin-bottom: 12px;
`;

export const SwitchLabel = styled.label<{$disabled?: boolean}>`
color: ${({$disabled, theme}) => ($disabled ? theme.color.textLight : theme.color.text)};
cursor: ${({$disabled}) => ($disabled ? 'not-allowed' : 'pointer')};
margin-bottom: 24px;
`;
10 changes: 5 additions & 5 deletions web/src/constants/CollectorConfig.constants.ts
Expand Up @@ -21,7 +21,7 @@ exporters:
logLevel: debug
${traceTestBlock}
# OTLP for Lightstep
otlp/lightstep:
endpoint: ingest.lightstep.com:443
Expand Down Expand Up @@ -58,7 +58,7 @@ service:
traces/1:
receivers: [otlp]
processors: [batch]
exporters: [otlp/1]
exporters: [otlp/tracetest]
`;

export const NewRelic = (traceTestBlock: string) => `receivers:
Expand Down Expand Up @@ -204,7 +204,7 @@ processors:
exporters:
logging:
logLevel: debug
${traceTestBlock}
# OTLP for Signoz
Expand Down Expand Up @@ -237,8 +237,8 @@ processors:
exporters:
logging:
verbosity: detailed
verbosity: detailed
${traceTestBlock}
# OTLP for Dynatrace
Expand Down

0 comments on commit 7bd72f0

Please sign in to comment.