You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2023/04/29 15:16:08 UTC

[streampipes] branch dev updated: Semantic type dropdown UI fixes (#1526)

This is an automated email from the ASF dual-hosted git repository.

bossenti pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampipes.git


The following commit(s) were added to refs/heads/dev by this push:
     new 49680ba81 Semantic type dropdown UI fixes (#1526)
49680ba81 is described below

commit 49680ba8180cf4535f01a7012ac5a9552bd6cc65
Author: Abhishek Sarkar <ab...@gmail.com>
AuthorDate: Sat Apr 29 20:46:03 2023 +0530

    Semantic type dropdown UI fixes (#1526)
---
 .../edit-schema-transformation.component.html                          | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/ui/src/app/connect/dialog/edit-event-property/components/edit-schema-transformation/edit-schema-transformation.component.html b/ui/src/app/connect/dialog/edit-event-property/components/edit-schema-transformation/edit-schema-transformation.component.html
index ceb076543..8ca237642 100644
--- a/ui/src/app/connect/dialog/edit-event-property/components/edit-schema-transformation/edit-schema-transformation.component.html
+++ b/ui/src/app/connect/dialog/edit-event-property/components/edit-schema-transformation/edit-schema-transformation.component.html
@@ -72,11 +72,12 @@
                     [matAutocompleteDisabled]="isTimestampProperty"
                     [formControl]="domainPropertyControl"
                 />
-                <mat-autocomplete #st="matAutocomplete" [panelWidth]="'300px'">
+                <mat-autocomplete #st="matAutocomplete" [panelWidth]="'400px'">
                     <mat-option
                         *ngFor="let semanticType of semanticTypes | async"
                         [value]="semanticType"
                         style="font-size: 10pt"
+                        [matTooltip]="semanticType"
                     >
                         {{ semanticType }}
                     </mat-option>