diff options
author | Marcel Amirault <ravlen@gmail.com> | 2019-03-05 13:06:32 +0000 |
---|---|---|
committer | Marcia Ramos <marcia@gitlab.com> | 2019-03-05 13:06:32 +0000 |
commit | 9c8dc7ddf61eff16d56579a8818bb866ca3e3e5e (patch) | |
tree | d84bfb00e9a61e08be62f7bc374cc9b3a3d852a4 /doc/development/ee_features.md | |
parent | b5fce88e86fd0fd1b3b694c6a3ddb236e9e8815e (diff) | |
download | gitlab-ce-9c8dc7ddf61eff16d56579a8818bb866ca3e3e5e.tar.gz |
Docs: Fix broken anchors in development docs
Diffstat (limited to 'doc/development/ee_features.md')
-rw-r--r-- | doc/development/ee_features.md | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/development/ee_features.md b/doc/development/ee_features.md index 17da4c51033..41a64044c68 100644 --- a/doc/development/ee_features.md +++ b/doc/development/ee_features.md @@ -161,7 +161,7 @@ still having access the class's implementation with `super`. There are a few gotchas with it: -- you should always [`extend ::Gitlab::Utils::Override`] and use `override` to +- you should always [`extend ::Gitlab::Utils::Override`](utilities.md#overridehttpsgitlabcomgitlab-orggitlab-ceblobmasterlibgitlabutilsoverriderb) and use `override` to guard the "overrider" method to ensure that if the method gets renamed in CE, the EE override won't be silently forgotten. - when the "overrider" would add a line in the middle of the CE @@ -273,8 +273,6 @@ module EE end ``` -[`extend ::Gitlab::Utils::Override`]: utilities.md#override - ##### Overriding CE class methods The same applies to class methods, except we want to use @@ -977,7 +975,7 @@ if (renderIfEE) { To separate EE-specific styles in SCSS files, if a component you're adding styles for is limited to only EE, it is better to have a separate SCSS file in appropriate directory within `app/assets/stylesheets`. -See [backporting changes](#backporting-changes) for instructions on how to merge changes safely. +See [backporting changes](#backporting-changes-from-EE-to-CE) for instructions on how to merge changes safely. In some cases, this is not entirely possible or creating dedicated SCSS file is an overkill, e.g. a text style of some component is different for EE. In such cases, |