From c88f9ce8b6af4e861bfde9a2edc3f62969df538b Mon Sep 17 00:00:00 2001 From: Kelly Date: Wed, 15 Apr 2020 14:31:28 -0700 Subject: [PATCH 1/7] upd "Support and feedback" for cloud and OSS --- layouts/partials/article.html | 7 +------ layouts/partials/article/_cloud-feedback.html | 18 ------------------ layouts/partials/article/_feedback.html | 13 ++++++++----- 3 files changed, 9 insertions(+), 29 deletions(-) delete mode 100644 layouts/partials/article/_cloud-feedback.html diff --git a/layouts/partials/article.html b/layouts/partials/article.html index b5eba7a26..8722dbbfb 100644 --- a/layouts/partials/article.html +++ b/layouts/partials/article.html @@ -8,11 +8,6 @@ {{ .Content }} {{ partial "article/related.html" . }} {{ partial "article/tags.html" . }} - - {{ if in .RelPermalink "/cloud/"}} - {{ partial "article/_cloud-feedback.html" . }} - {{ else }} - {{ partial "article/_feedback.html" . }} - {{ end }} + {{ partial "article/_feedback.html" . }} diff --git a/layouts/partials/article/_cloud-feedback.html b/layouts/partials/article/_cloud-feedback.html deleted file mode 100644 index 56788dd54..000000000 --- a/layouts/partials/article/_cloud-feedback.html +++ /dev/null @@ -1,18 +0,0 @@ -{{ $cloudName := .Site.Data.products.cloud.name }} -{{ $cloudNameShort := .Site.Data.products.cloud.shortname }} -
-
-

{{ $cloudName }} Support

-

- The following resources are available when you need help with {{ $cloudNameShort }}: -

-
Free Plan
- -
Usage-based Plan
- -
diff --git a/layouts/partials/article/_feedback.html b/layouts/partials/article/_feedback.html index 35e02376f..b2612a92d 100644 --- a/layouts/partials/article/_feedback.html +++ b/layouts/partials/article/_feedback.html @@ -1,15 +1,18 @@
-

Bug Reports and Feedback

+

Support and feedback

- Thank you for being willing to help test InfluxDB v2.0 beta! - Feedback and bug reports are welcome and encouraged both for InfluxDB and this documentation. - Submit feedback using one of the following methods: -

+ Thank you for being part of our community! + We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. + To find support or submit feedback, the following resources are available: +

+

+ For our Cloud customers, InfluxData Support is also available. +

From 3a489c94c6f0b184de1de68a6fd708b254bce402 Mon Sep 17 00:00:00 2001 From: Kelly Date: Thu, 16 Apr 2020 10:36:15 -0700 Subject: [PATCH 2/7] fix typo --- content/v2.0/reference/flux/stdlib/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/v2.0/reference/flux/stdlib/_index.md b/content/v2.0/reference/flux/stdlib/_index.md index f160c2ea7..cd4b6503a 100644 --- a/content/v2.0/reference/flux/stdlib/_index.md +++ b/content/v2.0/reference/flux/stdlib/_index.md @@ -13,6 +13,6 @@ weight: 102 --- The Flux standard library includes built-in functions and importable packages -that retrieve, transform,rocess, and output data. +that retrieve, transform, process, and output data. {{< children >}} From 2d7ab2b5aafad66be50e6c93c84ee74bd8f623bd Mon Sep 17 00:00:00 2001 From: pierwill Date: Fri, 17 Apr 2020 12:51:53 -0700 Subject: [PATCH 3/7] Use localhost in TLS curl examples --- content/v2.0/security/enable-tls.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/v2.0/security/enable-tls.md b/content/v2.0/security/enable-tls.md index 0af2d6a27..45510e4df 100644 --- a/content/v2.0/security/enable-tls.md +++ b/content/v2.0/security/enable-tls.md @@ -103,13 +103,13 @@ InfluxDB supports three types of TLS certificates: Ensure you can connect over HTTPS by running ``` - curl -v https://influxdb:9999/api/v2/ping + curl -v https://localhost:9999/api/v2/ping ``` If using a self-signed certificate, use the `-k` flag to skip certificate verification: ``` - curl -vk https://influxdb:9999/api/v2/ping + curl -vk https://localhost:9999/api/v2/ping ``` With this command, you should see output confirming a succussful TLS handshake. From c5a7ec7bc61e42418e5a64bfd56ee3dbf136037e Mon Sep 17 00:00:00 2001 From: pierwill Date: Mon, 20 Apr 2020 12:04:19 -0700 Subject: [PATCH 4/7] Fix flag in `influx org members add` example Closes #955 --- content/v2.0/organizations/members/add-member.md | 2 +- content/v2.0/reference/cli/influx/org/members/add.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/content/v2.0/organizations/members/add-member.md b/content/v2.0/organizations/members/add-member.md index d4a5d67ba..34b7bccb9 100644 --- a/content/v2.0/organizations/members/add-member.md +++ b/content/v2.0/organizations/members/add-member.md @@ -34,7 +34,7 @@ influx user list 2. To add a user to an organization, run the following command: ```sh -influx org members add -n -o +influx org members add -n -m ``` For more information, see the [`influx org members add` command](/v2.0/reference/cli/influx/org/members/add). diff --git a/content/v2.0/reference/cli/influx/org/members/add.md b/content/v2.0/reference/cli/influx/org/members/add.md index 6c1b52030..dfc5b39e7 100644 --- a/content/v2.0/reference/cli/influx/org/members/add.md +++ b/content/v2.0/reference/cli/influx/org/members/add.md @@ -20,7 +20,7 @@ influx org members add [flags] |:---- |:----------- |:----------: |:------------------ | | `-h`, `--help` | Help for the `add` command | | | | `-i`, `--id` | Organization ID | string | `INFLUX_ORG_ID` | -| `-o`, `--member` | Member ID | string | | +| `-m`, `--member` | Member ID | string | | | `-n`, `--name` | Organization name | string | `INFLUX_ORG` | {{% cli/influx-global-flags %}} From 0f4df0169bc92f7610880352aec30d8e9b707734 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 22 Apr 2020 13:59:28 -0600 Subject: [PATCH 5/7] cleaning up structure and content after cloud nav changes --- assets/styles/layouts/_sidebar.scss | 6 +- content/v2.0/account-management/_index.md | 4 +- content/v2.0/account-management/billing.md | 68 ++++++++++++------- content/v2.0/account-management/data-usage.md | 3 +- .../v2.0/account-management/offboarding.md | 3 +- .../account-management/pricing-calculator.md | 5 +- .../v2.0/account-management/pricing-plans.md | 9 +-- .../upgrade-to-usage-based-plan.md | 28 -------- content/v2.0/backup-restore/_index.md | 2 +- content/v2.0/influxdb-templates/_index.md | 2 +- content/v2.0/organizations/create-org.md | 1 + content/v2.0/organizations/delete-org.md | 1 + content/v2.0/organizations/switch-org.md | 1 + content/v2.0/organizations/view-orgs.md | 4 ++ content/v2.0/reference/urls.md | 16 +---- .../scrape-data/manage-scrapers/_index.md | 1 + .../manage-scrapers/create-a-scraper.md | 1 + .../manage-scrapers/delete-a-scraper.md | 1 + .../manage-scrapers/update-a-scraper.md | 1 + layouts/partials/sidebar.html | 5 -- layouts/partials/sidebar/nested-menu.html | 12 ++-- 21 files changed, 84 insertions(+), 90 deletions(-) delete mode 100644 content/v2.0/account-management/upgrade-to-usage-based-plan.md diff --git a/assets/styles/layouts/_sidebar.scss b/assets/styles/layouts/_sidebar.scss index 077fcc5e3..ec70e1bc7 100644 --- a/assets/styles/layouts/_sidebar.scss +++ b/assets/styles/layouts/_sidebar.scss @@ -168,15 +168,16 @@ font-weight: $medium; display: inline-block; - // Product exclusivity labels + /////////////////////// Product exclusivity labels /////////////////////// span:after{ display: inline-block; position: relative; top: -2px; margin-left: .15rem; - padding: .45rem .17rem .35rem; + padding: .45rem .18rem .35rem; line-height: 0; font-size: .6rem; + font-style: italic; border-radius: 8px; } @@ -205,6 +206,7 @@ } } } + ////////////////////// End Product exclusivity labels ////////////////////// .nav-category > a { color: $nav-category; diff --git a/content/v2.0/account-management/_index.md b/content/v2.0/account-management/_index.md index 6444f3a07..7b2dae52f 100644 --- a/content/v2.0/account-management/_index.md +++ b/content/v2.0/account-management/_index.md @@ -3,12 +3,12 @@ title: Manage your InfluxDB Cloud 2.0 Account description: > View and manage information related to your InfluxDB Cloud 2.0 account such as pricing plans, data usage, account cancelation, etc. -weight: 4 +weight: 10 products: [cloud] aliases: - /v2.0/cloud/account-management/ menu: - v2_0_cloud: + v2_0: name: Account management products: [cloud] --- diff --git a/content/v2.0/account-management/billing.md b/content/v2.0/account-management/billing.md index b02f76cca..1634d4e12 100644 --- a/content/v2.0/account-management/billing.md +++ b/content/v2.0/account-management/billing.md @@ -1,22 +1,43 @@ --- -title: Add payment method and view billing -list_title: Add payment and view billing +title: Manage InfluxDB Cloud billing +list_title: Manage billing description: > - Add your InfluxDB Cloud payment method and view billing information. + Upgrade to the InfluxDB Cloud Usage-Based Plan and manage your billing information. aliases: - - /v2.0/cloud/account-management/billing + - /v2.0/cloud/account-management/billing + - /v2.0/cloud/account-management/upgrade-to-payg/ + - /v2.0/cloud/account-management/upgrade-to-usage-based-plan/ weight: 103 menu: - v2_0_cloud: + v2_0: parent: Account management - name: Add payment and view billing + name: Manage billing +products: [cloud] --- +## Upgrade to Usage-Based Plan + +1. Click **Upgrade Now** in the top right corner of the {{< cloud-name "short" >}} user interface (UI). +2. Review the terms and pricing associated with the Usage-Based Plan. +3. Click **Sounds Good To Me**. +4. Enter your contact information. + Traditionally this would be "shipping" information, but InfluxData does not ship anything. + This information should be the primary location where the service is consumed. + All service updates, security notifications and other important information are + sent using the information you provide. + The address is used to determine any applicable sales tax. +5. Enter your payment information and click **Add Card**. +6. Review the plan details, contact information, and credit card information. +7. Click **Confirm & Order**. + Add your payment method and view billing information in the {{< cloud-name "short" >}} user interface (UI). ## Access billing details -1. Click the **user avatar** in the top right corner of the {{< cloud-name "short" >}} - UI and select **Billing**. +1. In the {{< cloud-name "short" >}} UI, select the **user avatar** in the left + navigation menu, and select **Billing**. + + {{< nav-icon "account" >}} + 2. Do one of the following: - If you subscribed to an InfluxDB Cloud 2.0 plan through **AWS Marketplace** or **GCP Marketplace**, click the **AWS** or **GCP** link to access your @@ -36,9 +57,9 @@ Add your payment method and view billing information in the {{< cloud-name "shor - [Billing cycle](#billing-cycle) - [Declined or late payments](#declined-or-late-payments) -### Add or update your InfluxDB Cloud 2.0 payment method +### Add or update your payment method -1. On the Billing page: +1. On the **Billing page**: - To update, click the **Change Payment** button on the Billing page. - In the **Payment Method** section: - Enter your cardholder name and number @@ -50,39 +71,40 @@ Add your payment method and view billing information in the {{< cloud-name "shor ### Add or update your contact information -1. On the Billing page: +1. On the **Billing page**: - To update, click the **Edit Information** button. - In the **Contact Information** section, enter your name, company, and address. 2. Click **Save Contact Info**. ### Send notifications when usage exceeds an amount -1. On the Billing page, click **Notification Settings**. +1. On the **Billing page**, click **Notification Settings**. 2. Select the **Send email notification** toggle, and then enter the email address to notify. 3. Enter the dollar amount to trigger a notification email. By default, an email is triggered when the amount exceeds $10. (Whole dollar amounts only. For example, $10.50 is not a supported amount.) ### View Usage-based Plan information -- On the Billing page, view your billing information, including: - - Account balance - - Last billing update (updated hourly) - - Past invoices - - Payment method - - Contact information - - Notification settings +On the **Billing page**, view your billing information, including: + +- Account balance +- Last billing update (updated hourly) +- Past invoices +- Payment method +- Contact information +- Notification settings ### View Free Plan information -- On the Billing page, view the total limits available for the Free Plan. +On the **Billing page**, view the total limits available for the Free Plan. -### Exceeded rate limits +## Exceeded rate limits If you exceed your plan's [rate limits](/v2.0/cloud/pricing-plans/), {{< cloud-name >}} provides a notification in the {{< cloud-name "short" >}} user interface (UI) and adds a rate limit event to your **Usage** page for review. All rate-limited requests are rejected; including both read and write requests. _Rate-limited requests are **not** queued._ -_To remove rate limits, [upgrade to a Usage-based Plan](/v2.0/cloud/account-management/upgrade-to-usage-based-plan/)._ +_To remove rate limits, [upgrade to a Usage-based Plan](#upgrade-to-usage-based-plan)._ #### Rate-limited HTTP response code @@ -93,7 +115,7 @@ HTTP 429 “Too Many Requests” Retry-After: xxx (seconds to wait before retrying the request) ``` -### Billing cycle +## Billing cycle Billing occurs on the first day of the month for the previous month. For example, if you start the Usage-based Plan on September 15, you're billed on October 1 for your usage from September 15-30. diff --git a/content/v2.0/account-management/data-usage.md b/content/v2.0/account-management/data-usage.md index eecbc6bbb..5c5f1984a 100644 --- a/content/v2.0/account-management/data-usage.md +++ b/content/v2.0/account-management/data-usage.md @@ -7,9 +7,10 @@ weight: 103 aliases: - /v2.0/cloud/account-management/data-usage menu: - v2_0_cloud: + v2_0: parent: Account management name: View data usage +products: [cloud] --- To view your {{< cloud-name >}} data usage, click the **user avatar** in the top diff --git a/content/v2.0/account-management/offboarding.md b/content/v2.0/account-management/offboarding.md index c9a9c0d92..699a5586e 100644 --- a/content/v2.0/account-management/offboarding.md +++ b/content/v2.0/account-management/offboarding.md @@ -7,9 +7,10 @@ weight: 104 aliases: - /v2.0/cloud/account-management/offboarding menu: - v2_0_cloud: + v2_0: parent: Account management name: Cancel InfluxDB Cloud +products: [cloud] --- To cancel your {{< cloud-name >}} subscription, complete the following steps: diff --git a/content/v2.0/account-management/pricing-calculator.md b/content/v2.0/account-management/pricing-calculator.md index 1b451308d..93ce3a3bb 100644 --- a/content/v2.0/account-management/pricing-calculator.md +++ b/content/v2.0/account-management/pricing-calculator.md @@ -5,8 +5,9 @@ description: > plugins, metrics, and writes for the Usage-based Plan. weight: 2 menu: - v2_0_cloud: + v2_0: name: Pricing calculator +products: [cloud] draft: true --- @@ -36,7 +37,7 @@ Guidelines used to estimate costs for default configurations: - Free Plan. Click the **user avatar** in the top right corner of your {{< cloud-name "short" >}} user interface (UI) and select **Billing**. - Then click the **Pricing Calculator** link at the bottom of the page. + Then click the **Pricing Calculator** link at the bottom of the page. - Usage-based Plan. Open the pricing calculator [here](https://cloud2.influxdata.com/pricing). 3. Choose your region. 4. Select your configuration: diff --git a/content/v2.0/account-management/pricing-plans.md b/content/v2.0/account-management/pricing-plans.md index e34ef8a7f..2a27ec996 100644 --- a/content/v2.0/account-management/pricing-plans.md +++ b/content/v2.0/account-management/pricing-plans.md @@ -6,11 +6,12 @@ description: > aliases: - /v2.0/cloud/rate-limits/ - /v2.0/cloud/pricing-plans/ -weight: 2 +weight: 102 menu: -v2_0_cloud: - parent: Account management - name: Pricing plans + v2_0: + parent: Account management + name: Pricing plans +products: [cloud] --- InfluxDB Cloud 2.0 offers two pricing plans: diff --git a/content/v2.0/account-management/upgrade-to-usage-based-plan.md b/content/v2.0/account-management/upgrade-to-usage-based-plan.md deleted file mode 100644 index 4e106e3bd..000000000 --- a/content/v2.0/account-management/upgrade-to-usage-based-plan.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -title: Upgrade to a Usage-Based Plan -description: > - Upgrade to a Usage-Based Plan to remove rate limits from your InfluxDB Cloud 2.0 account. -aliases: - - /v2.0/cloud/account-management/upgrade-to-payg/ - - /v2.0/cloud/account-management/upgrade-to-usage-based-plan/ -weight: 102 -menu: - v2_0_cloud: - parent: Account management - name: Upgrade to Usage-Based Plan ---- - -Upgrade to a Usage-Based Plan to remove rate limits from your InfluxDB Cloud 2.0 account. - -1. Click **Upgrade** in the top right corner of the {{< cloud-name "short" >}} user interface (UI). -2. Review the terms and pricing associated with the Usage-Based Plan. -3. Click **Sounds Good To Me**. -4. Enter your contact information. - Traditionally this would be "shipping" information, but InfluxData does not ship anything. - This information should be the primary location where the service is consumed. - All service updates, security notifications and other important information are - sent using the information you provide. - The address is used to determine any applicable sales tax. -5. Enter your payment information and click **Add Card**. -6. Review the plan details, contact information, and credit card information. -7. Click **Confirm & Order**. diff --git a/content/v2.0/backup-restore/_index.md b/content/v2.0/backup-restore/_index.md index 6e6dfc340..d50fb8d6f 100644 --- a/content/v2.0/backup-restore/_index.md +++ b/content/v2.0/backup-restore/_index.md @@ -8,7 +8,7 @@ v2.0/tags: [backup, restore] menu: v2_0: name: Back up & restore data -weight: 10 +weight: 9 #draft: true --- diff --git a/content/v2.0/influxdb-templates/_index.md b/content/v2.0/influxdb-templates/_index.md index 1f2676423..b300fde3e 100644 --- a/content/v2.0/influxdb-templates/_index.md +++ b/content/v2.0/influxdb-templates/_index.md @@ -4,7 +4,7 @@ description: > InfluxDB templates are prepackaged InfluxDB configurations that contain everything from dashboards and Telegraf configurations to notifications and alerts. menu: v2_0 -weight: 10 +weight: 9 v2.0/tags: [templates] --- diff --git a/content/v2.0/organizations/create-org.md b/content/v2.0/organizations/create-org.md index 93a2fdf74..bea97dd6c 100644 --- a/content/v2.0/organizations/create-org.md +++ b/content/v2.0/organizations/create-org.md @@ -7,6 +7,7 @@ menu: name: Create an organization parent: Manage organizations weight: 101 +products: [oss] --- Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI) diff --git a/content/v2.0/organizations/delete-org.md b/content/v2.0/organizations/delete-org.md index bf44096cf..d0da69455 100644 --- a/content/v2.0/organizations/delete-org.md +++ b/content/v2.0/organizations/delete-org.md @@ -7,6 +7,7 @@ menu: name: Delete an organization parent: Manage organizations weight: 104 +products: [oss] --- Use the `influx` command line interface (CLI) diff --git a/content/v2.0/organizations/switch-org.md b/content/v2.0/organizations/switch-org.md index 8477441f0..d419dd708 100644 --- a/content/v2.0/organizations/switch-org.md +++ b/content/v2.0/organizations/switch-org.md @@ -7,6 +7,7 @@ menu: name: Switch organizations parent: Manage organizations weight: 105 +products: [oss] --- Use the InfluxDB user interface (UI) to switch from one organization to another. The organization you're currently viewing determines what dashboards, tasks, buckets, members, and other assets you can access. diff --git a/content/v2.0/organizations/view-orgs.md b/content/v2.0/organizations/view-orgs.md index 0a304072b..b358d18fb 100644 --- a/content/v2.0/organizations/view-orgs.md +++ b/content/v2.0/organizations/view-orgs.md @@ -20,6 +20,10 @@ to view organizations. 2. Select **Switch Organizations**. The list of organizations appears. +{{% cloud %}} +**{{< cloud-name "short" >}}** does not support viewing and switching between multiple organizations. +{{% /cloud %}} + ## View organizations using the influx CLI Use the [`influx org list` command](/v2.0/reference/cli/influx/org/list) diff --git a/content/v2.0/reference/urls.md b/content/v2.0/reference/urls.md index a4ace5f8e..97c8d9f41 100644 --- a/content/v2.0/reference/urls.md +++ b/content/v2.0/reference/urls.md @@ -4,10 +4,10 @@ description: > InfluxDB 2.0 is available both locally (OSS) or on multiple cloud providers in multiple regions (Cloud). aliases: - /v2.0/cloud/urls/ -weight: 8 +weight: 6 menu: v2_0_ref: - name: InfluxDB 2.0 URLs + name: InfluxDB URLs --- InfluxDB 2.0 is available both locally (OSS) or on multiple cloud providers in multiple regions (Cloud). @@ -29,15 +29,3 @@ Use the URLs below to interact with your InfluxDB Cloud instances with the [`influx` CLI](/v2.0/reference/cli/influx/), or [Telegraf](/v2.0/write-data/use-telegraf/). {{< cloud_urls >}} - ---- - -### View your Cloud URL in the InfluxDB Cloud UI -For the URL of your specific InfluxDB Cloud instance: - -1. Click the **Load Data** icon in the left navigation of your InfluxDB Cloud user interface (UI). - - {{< nav-icon "load-data" >}} - -2. Go to **Client Libraries**. -3. The URL of your InfluxDB instance is displayed near the top of the page. diff --git a/content/v2.0/write-data/scrape-data/manage-scrapers/_index.md b/content/v2.0/write-data/scrape-data/manage-scrapers/_index.md index 0f1b7d099..e2c0ef356 100644 --- a/content/v2.0/write-data/scrape-data/manage-scrapers/_index.md +++ b/content/v2.0/write-data/scrape-data/manage-scrapers/_index.md @@ -10,6 +10,7 @@ menu: parent: Scrape data weight: 201 v2.0/tags: [scraper] +products: [oss] --- The following articles walk through managing InfluxDB scrapers: diff --git a/content/v2.0/write-data/scrape-data/manage-scrapers/create-a-scraper.md b/content/v2.0/write-data/scrape-data/manage-scrapers/create-a-scraper.md index 1eb6e903c..ae3bc2b77 100644 --- a/content/v2.0/write-data/scrape-data/manage-scrapers/create-a-scraper.md +++ b/content/v2.0/write-data/scrape-data/manage-scrapers/create-a-scraper.md @@ -8,6 +8,7 @@ menu: v2_0: parent: Manage scrapers weight: 301 +products: [oss] --- Create a new scraper in the InfluxDB user interface (UI). diff --git a/content/v2.0/write-data/scrape-data/manage-scrapers/delete-a-scraper.md b/content/v2.0/write-data/scrape-data/manage-scrapers/delete-a-scraper.md index f41c4f9fb..45c289f3b 100644 --- a/content/v2.0/write-data/scrape-data/manage-scrapers/delete-a-scraper.md +++ b/content/v2.0/write-data/scrape-data/manage-scrapers/delete-a-scraper.md @@ -8,6 +8,7 @@ menu: v2_0: parent: Manage scrapers weight: 303 +products: [oss] --- Delete a scraper from the InfluxDB user interface (UI). diff --git a/content/v2.0/write-data/scrape-data/manage-scrapers/update-a-scraper.md b/content/v2.0/write-data/scrape-data/manage-scrapers/update-a-scraper.md index 519ba5847..a97bf561e 100644 --- a/content/v2.0/write-data/scrape-data/manage-scrapers/update-a-scraper.md +++ b/content/v2.0/write-data/scrape-data/manage-scrapers/update-a-scraper.md @@ -8,6 +8,7 @@ menu: v2_0: parent: Manage scrapers weight: 302 +products: [oss] --- Update a scraper in the InfluxDB user interface (UI). diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index 2cd5310ae..70b6ca7f9 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -22,16 +22,11 @@