Skip to content

Commit

Permalink
Minor changes
Browse files Browse the repository at this point in the history
Wip
  • Loading branch information
ananya-agarwal committed Jan 27, 2025
1 parent 4ba2fcd commit 6875041
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
// limitations under the License.

import React from 'react';
import '../ServerLogs/ServerLogsTab.scss';

interface HighlightTextProps {
text: string;
Expand All @@ -25,7 +26,7 @@ interface HighlightTextProps {
const HighlightText: React.FC<HighlightTextProps> = ({
text,
searchValue,
highlightClassName = 'highlight-word'
highlightClassName = 'server--highlight-word'
}) => {
if (!searchValue) {
return <>{text}</>;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const ServerLogs: React.FC = (): JSX.Element => {

if (error) {
return (
<div className="server-logs-component">
<div className="hue-server-logs-component">
<Alert
message={t(`Error: ${error}`)}
description={t('An error occurred while fetching server logs.')}
Expand Down

0 comments on commit 6875041

Please sign in to comment.