Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultComponent.java')
-rw-r--r--plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultComponent.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultComponent.java b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultComponent.java
index 9f2412c172f..5ab11970beb 100644
--- a/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultComponent.java
+++ b/plugins/org.eclipse.osee.display.view.web/src/org/eclipse/osee/display/view/web/components/OseeSearchResultComponent.java
@@ -102,7 +102,7 @@ public class OseeSearchResultComponent extends VerticalLayout implements SearchR
private class OseeSearchResultMatchComponent extends HorizontalLayout {
public OseeSearchResultMatchComponent(SearchResultMatch match) {
Label matchLabel = new Label(String.format("%s: ", match.getAttributeType(), Label.CONTENT_XHTML));
- matchLabel.setStyleName(CssConstants.OSEE_SEARCHRESULT_MATCH);
+ matchLabel.setStyleName(CssConstants.OSEE_ATTRNAME);
Label spacer4 = new Label();
spacer4.setWidth(15, UNITS_PIXELS);
Label matchLabelHint = new Label(String.format("%s", match.getMatchHint()), Label.CONTENT_XHTML);

Back to the top