From 8d50baa36e17530ccfdeec0b2214eb39d3e51975 Mon Sep 17 00:00:00 2001 From: J Date: Wed, 3 Jul 2019 14:49:46 -0400 Subject: [PATCH] Bug 1561755 - Replace flex display badge tooltip with the correct inlineFlex tooltip string id in element-editor.js. r=gl --- devtools/client/inspector/markup/views/element-editor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/client/inspector/markup/views/element-editor.js b/devtools/client/inspector/markup/views/element-editor.js index afad395a1743..43c99f63e570 100644 --- a/devtools/client/inspector/markup/views/element-editor.js +++ b/devtools/client/inspector/markup/views/element-editor.js @@ -34,7 +34,7 @@ const HTML_VOID_ELEMENTS = [ // element markup and their respective title tooltip text. const DISPLAY_TYPES = { "flex": INSPECTOR_L10N.getStr("markupView.display.flex.tooltiptext"), - "inline-flex": INSPECTOR_L10N.getStr("markupView.display.flex.tooltiptext"), + "inline-flex": INSPECTOR_L10N.getStr("markupView.display.inlineFlex.tooltiptext"), "grid": INSPECTOR_L10N.getStr("markupView.display.grid.tooltiptext"), "inline-grid": INSPECTOR_L10N.getStr("markupView.display.inlineGrid.tooltiptext"), "subgrid": INSPECTOR_L10N.getStr("markupView.display.subgrid.tooltiptiptext"),