Skip to content

Commit

Permalink
devtools: disable auto-hiding of values in object properties section
Browse files Browse the repository at this point in the history
  • Loading branch information
darwin committed Sep 17, 2019
1 parent 8d1f08a commit eda4dc2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,9 @@
}

.name-and-value {
/* see https://github.com/binaryage/cljs-devtools/issues/52
overflow: hidden;
text-overflow: ellipsis;
text-overflow: ellipsis;*/
line-height: 16px;
}

Expand Down

3 comments on commit eda4dc2

@p-himik
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Doesn't seem to be fixed for the inline values:
image

@darwin
Copy link
Member Author

@darwin darwin commented on eda4dc2 Oct 22, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can confirm that this commit has nothing to do with inline custom formatters. name-and-value class is used in Scope panel only.

@darwin
Copy link
Member Author

@darwin darwin commented on eda4dc2 Oct 22, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@p-himik I tried to work around it here: 5fdeca8

Not sure about some unintended consequences. I'm going to release it in 1.4.4 and we will see.

Please sign in to comment.