diff --git a/source/_components/alarm_control_panel.manual.markdown b/source/_components/alarm_control_panel.manual.markdown
index ba32957c38d..36b49399a78 100644
--- a/source/_components/alarm_control_panel.manual.markdown
+++ b/source/_components/alarm_control_panel.manual.markdown
@@ -7,7 +7,7 @@ sidebar: true
comments: false
sharing: true
footer: true
-ha_category: Alarm Control Panel
+ha_category: Alarm
---
diff --git a/source/_components/alarm_control_panel.mqtt.markdown b/source/_components/alarm_control_panel.mqtt.markdown
index f852f047ea4..712b68b7ac6 100644
--- a/source/_components/alarm_control_panel.mqtt.markdown
+++ b/source/_components/alarm_control_panel.mqtt.markdown
@@ -8,7 +8,7 @@ comments: false
sharing: true
footer: true
logo: mqtt.png
-ha_category: "Alarm Control Panel"
+ha_category: Alarm
---
diff --git a/source/_components/simple_alarm.markdown b/source/_components/simple_alarm.markdown
index 8a43638e761..9590158f08a 100644
--- a/source/_components/simple_alarm.markdown
+++ b/source/_components/simple_alarm.markdown
@@ -7,7 +7,7 @@ sidebar: true
comments: false
sharing: true
footer: true
-ha_category: Automation
+ha_category: Alarm
---
diff --git a/source/components/index.html b/source/components/index.html
index 5966825f015..a0f4b9d1c4d 100644
--- a/source/components/index.html
+++ b/source/components/index.html
@@ -78,18 +78,21 @@ $(window).load(function(){
}
function applyFilter() {
- var filter = location.hash;
+ var hash = location.hash;
- if (filter == '') {
+ var filter;
+ if (hash == '') {
filter = '.featured'
- } else if (filter == '#all') {
+ hash = '#featured'
+ } else if (hash == '#all') {
filter = '*';
} else {
- filter = '.' + filter.substr(1);
+ filter = '.' + hash.substr(1);
}
$('.filter-button-group a.current').removeClass('current');
- $('.filter-button-group a[href='+location.hash+']').addClass('current');
+ $('.filter-button-group a[href='+hash+']').addClass('current');
+
$container.isotope({
filter: filter,
animationOptions: {
diff --git a/source/getting-started/troubleshooting.markdown b/source/getting-started/troubleshooting.markdown
index 972b2942718..4192c68802e 100644
--- a/source/getting-started/troubleshooting.markdown
+++ b/source/getting-started/troubleshooting.markdown
@@ -26,19 +26,30 @@ by some distributions. If you are unable to run `python3 -m pip --version` you c
[downloading the installer](https://bootstrap.pypa.io/get-pip.py) and run it with Python 3:
`python3 get-pip.py`.
+**distutils.errors.DistutilsOptionError: must supply either home or prefix/exec-prefix -- not both**
+This is a known issue if you're on a Mac using Homebrew to install Python. Please follow
+[these instructions](https://github.com/Homebrew/homebrew/blob/master/share/doc/homebrew/Homebrew-and-Python.md#note-on-pip-install---user)
+to resolve it.
+
**CentOS and Python 3**
To run Python 3.x on [CentOS](https://www.centos.org/) or RHEL, [Software Collections](https://www.softwarecollections.org/en/scls/rhscl/rh-python34/) needs to be activated.