Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(frontend): fix minor ui styles #3387

Merged
merged 1 commit into from
Nov 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion web/src/components/Settings/common/Settings.styled.ts
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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