Index: chrome/browser/resources/bluetooth_internals/device_table.js |
diff --git a/chrome/browser/resources/bluetooth_internals/device_table.js b/chrome/browser/resources/bluetooth_internals/device_table.js |
index e5b598fc123b5404e31ae31d3b049778e22d027d..557629dcd50b3996ebbd0b1fa7cc0cdd1baf51fa 100644 |
--- a/chrome/browser/resources/bluetooth_internals/device_table.js |
+++ b/chrome/browser/resources/bluetooth_internals/device_table.js |
@@ -121,7 +121,7 @@ cr.define('device_table', function() { |
// notification system. |
var connectErrorCell = row.insertCell(); |
- var inspectButton = document.createElement('button'); |
+ var inspectButton = document.createElement('a', 'action-link'); |
Dan Beam
2016/12/07 21:57:49
nit: Button -> Link?
|
inspectCell.appendChild(inspectButton); |
inspectButton.addEventListener('click', function() { |
this.handleInspectBtn_(row.sectionRowIndex); |