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

Set minFrameSize to 5 #40

Merged
merged 1 commit into from
Jan 31, 2020
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
# Change Log

## v1.0.2 (Jan 27, 2019)
## v1.0.3 (Feb 1, 2020)

* [#40](https://github.com/Shopify/shopify-theme-inspector/pull/40) Set minFrameSize to 5

## v1.0.2 (Jan 27, 2020)

* [#39](https://github.com/Shopify/shopify-theme-inspector/pull/39) Fix profiling path

## v1.0.1 (Jan 27, 2019)
## v1.0.1 (Jan 27, 2020)

* [#37](https://github.com/Shopify/shopify-theme-inspector/pull/37) Fix custom domain redirect
* [#38](https://github.com/Shopify/shopify-theme-inspector/pull/38) Address security concern

## v1.0.0 (Jan. 14, 2019)
## v1.0.0 (Jan. 14, 2020)

* First release of the extension
1 change: 1 addition & 0 deletions src/components/liquid-flamegraph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export default class LiquidFlamegraph {
.flamegraph()
.inverted(true)
.cellHeight(20)
.minFrameSize(5)
.width(flameGraphWidth)
.label(function(node: FlamegraphNode) {
return `${node.data.name} took ${formatNodeTime(node.value)}ms`;
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Shopify Theme Inspector for Chrome",
"version": "1.0.2",
"version": "1.0.3",
"description": "Profile and debug Liquid template on your Shopify store",
"devtools_page": "devtools.html",
"permissions": ["storage", "identity", "activeTab"],
Expand Down