code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/packages/store/addon/-private/system/model/internal-model.ts b/packages/store/addon/-private/system/model/internal-model.ts @@ -36,9 +36,7 @@ type JsonApiValidationError = import('../../ts-interfaces/record-data-json-api') type RecordData = import('../../ts-interfaces/record-data').RecordData; type RecordA...
7
diff --git a/services/web-ui/public/manifest.json b/services/web-ui/public/manifest.json { - "short_name": "React App", - "name": "Create React App Sample", + "short_name": "Web UI", + "name": "Open Intengration Hub web user interface", "icons": [ { "src": "favicon.ico",
10
diff --git a/examples/texture-compression/texture-compression.html b/examples/texture-compression/texture-compression.html <!DOCTYPE html> <html lang="en"> + <head> <meta charset="UTF-8" /> <script src="../../../devtools/lightning-inspect.js"></script> </head> + <body style="margin: 0; padding: 0"> <script type="module...
3
diff --git a/docs/math.md b/docs/math.md @@ -263,7 +263,7 @@ var diffInMonths = end.diff(start, 'months'); diffInMonths.as('days'); //=> 30 ``` -That's our conversion between months and days (you could also do a longterm-accurate conversion; it wouldn't fix the issue ahead). But this isn't the number of days between Fe...
1
diff --git a/src/pages/home/report/EmojiPickerMenu/index.js b/src/pages/home/report/EmojiPickerMenu/index.js @@ -142,7 +142,11 @@ class EmojiPickerMenu extends Component { // Select the currently highlighted emoji if enter is pressed if (keyBoardEvent.key === 'Enter' && this.state.highlightedIndex !== -1) { - this.prop...
4
diff --git a/src/data-type-formats.js b/src/data-type-formats.js @@ -32,7 +32,7 @@ exports.binary = { const length = value.length; const array = []; for (let i = 0; i < length; i += 8) array.push(parseInt(value.substr(i, 8), 2)) - return Buffer.from ? Buffer.from(array, 'binary') : new Buffer(array, 'binary'); + return...
3
diff --git a/src/index.js b/src/index.js // Node dependencies const fs = require('fs'); const path = require('path'); +const exec = require('child_process').exec; // External dependencies const Hapi = require('hapi'); @@ -102,13 +103,16 @@ class Offline { apiKey: { usage: 'Defines the api key value to be used for endpo...
0
diff --git a/assets/sass/components/settings/_googlesitekit-settings-notice.scss b/assets/sass/components/settings/_googlesitekit-settings-notice.scss .mdc-text-field:not(.mdc-text-field--disabled) { + .mdc-floating-label { + color: $c-text-notice-info-selected-text; + } + .mdc-text-field__input { color: $c-text-notice...
12
diff --git a/generators/kubernetes-helm/templates/helm-apply.sh.ejs b/generators/kubernetes-helm/templates/helm-apply.sh.ejs @@ -25,15 +25,24 @@ kubectl apply -f namespace.yaml <%_ if (istio) { _%> kubectl label namespace <%- kubernetesNamespace %> istio-injection=enabled <%_ } _%> +helmVersion=$(helm version --client ...
3
diff --git a/responsive-ui/app/account-detail.js b/responsive-ui/app/account-detail.js @@ -62,7 +62,7 @@ AccountDetailScreen.prototype.render = function () { h('.account-data-subsection', { style: { margin: '0 20px', - maxWidth: '320px', + flex: '1 0 auto', }, }, [ @@ -87,6 +87,7 @@ AccountDetailScreen.prototype.render...
7
diff --git a/spec/requests/carto/oauth_provider_controller_spec.rb b/spec/requests/carto/oauth_provider_controller_spec.rb @@ -318,17 +318,8 @@ describe Carto::OauthProviderController do end shared_examples_for 'successfully authorizes' do - def validate_response(response) - access_token = @oauth_app.oauth_app_users.fi...
13
diff --git a/app/components/modal-restore-backup/component.js b/app/components/modal-restore-backup/component.js @@ -22,7 +22,7 @@ export default Component.extend(ModalBase, { }, actions: { - restore(cb) { + restore() { const { backupId } = this; const out = {}; @@ -31,13 +31,6 @@ export default Component.extend(ModalB...
2
diff --git a/plasma_framework/truffle-config.js b/plasma_framework/truffle-config.js @@ -14,7 +14,6 @@ module.exports = { host: process.env.ETH_CLIENT_HOST || '127.0.0.1', port: process.env.ETH_CLIENT_PORT || 8545, from: process.env.DEPLOYER_ADDRESS, - gas: 10000000, network_id: '*', }, // Remote means that the remote ...
2
diff --git a/articles/connections/calling-an-external-idp-api.md b/articles/connections/calling-an-external-idp-api.md @@ -190,3 +190,7 @@ This option comes with an additional cost, for details see [Auth0 Extend pricing In this scenario, you will create a webtask and implement the steps of [the backend section](#from-t...
0
diff --git a/src/parser/vast_parser.js b/src/parser/vast_parser.js @@ -35,7 +35,6 @@ export class VASTParser extends EventEmitter { this.parserUtils = new ParserUtils(); this.adParser = new AdParser(); this.util = new Util(); - this.urlHandler = new URLHandler(); } /** @@ -131,6 +130,8 @@ export class VASTParser extend...
11
diff --git a/articles/appliance/admin/rate-limiting.md b/articles/appliance/admin/rate-limiting.md @@ -10,7 +10,7 @@ applianceId: appliance9 --- # PSaaS Appliance: Rate Limiting -Beginning with PSaaS Appliance build `6576`, rate limits for API endpoints can be enabled and configured in the Dashboard. Rate limiting in t...
2
diff --git a/src/components/docs-sidebar-nav-item.js b/src/components/docs-sidebar-nav-item.js @@ -140,7 +140,7 @@ class DocsSidebarNavItem extends React.Component { </button> )} - <Link className="DocsSidebar--nav-link DocsSidebar--link" to={node.href} {...linkProps}> + <Link className="DocsSidebar--nav-link" to={node...
7
diff --git a/src/Aethcord/plugins/spotify/Modal/contextMenuGroups.js b/src/Aethcord/plugins/spotify/Modal/contextMenuGroups.js @@ -49,13 +49,13 @@ module.exports = (state, onButtonClick) => [ type: 'submenu', name: 'Repeat Modes', getItems: () => [ { - name: 'Repeat Current Playlist/Album', + name: 'On', stateName: 'co...
10
diff --git a/articles/quickstart/native/ios-swift/_includes/_login_centralized.md b/articles/quickstart/native/ios-swift/_includes/_login_centralized.md @@ -37,7 +37,7 @@ Then present the hosted login screen, like this: ${snippet(meta.snippets.use)} ::: note -This snippet sets the `audience` to ensure an OIDC compliant...
0
diff --git a/packages/fether-react/src/assets/img/icons/menu.svg b/packages/fether-react/src/assets/img/icons/menu.svg s3.97-1.772,3.97-3.967C20.201,13.835,18.423,12.061,16.233,12.061z M28.09,12.061c-2.192,0-3.969,1.774-3.969,3.967 c0,2.19,1.774,3.965,3.969,3.965c2.188,0,3.965-1.772,3.965-3.965S30.278,12.061,28.09,12.0...
2
diff --git a/addon/components/polaris-button/link.js b/addon/components/polaris-button/link.js import BaseComponent from './base'; import Ember from 'ember'; +import mapEventToAction from '../../utils/map-event-to-action'; const { computed, @@ -23,4 +24,10 @@ export default BaseComponent.extend({ rel: computed('externa...
11
diff --git a/templates/master/elasticsearch/kibana/Dashboards.js b/templates/master/elasticsearch/kibana/Dashboards.js @@ -10,7 +10,7 @@ module.exports=[ "hits": 0, "description": "", "panelsJSON": "[{\"col\":9,\"id\":\"Client-types\",\"panelIndex\":3,\"row\":1,\"size_x\":4,\"size_y\":4,\"type\":\"visualization\"},{\"c...
3
diff --git a/includes/Core/REST_API/REST_Routes.php b/includes/Core/REST_API/REST_Routes.php @@ -167,69 +167,6 @@ final class REST_Routes { }; $routes = array( - // TODO: This route is super-complex to use and needs to be simplified. - new REST_Route( - 'data', - array( - array( - 'methods' => WP_REST_Server::CREATABLE...
2
diff --git a/AjaxControlToolkit.SampleSite/Default.aspx b/AjaxControlToolkit.SampleSite/Default.aspx @@ -23,8 +23,8 @@ The AJAX Control Toolkit contains more than 30 controls that enable you to easil <br /> <p> To get started, and to install the Ajax Control Toolkit, visit the -<a href="http://AjaxControlToolkit.codepl...
3
diff --git a/universe.js b/universe.js @@ -3,6 +3,7 @@ this file contains the multiplayer code. */ import * as THREE from 'three'; +import * as Y from 'yjs'; import {getRenderer, scene, camera, dolly} from './renderer.js'; import {world} from './world.js'; import physicsManager from './physics-manager.js'; @@ -40,12 +4...
4
diff --git a/stories/module-analytics-components.stories.js b/stories/module-analytics-components.stories.js @@ -62,12 +62,7 @@ const baseAllTrafficArgs = { ], }; -generateReportBasedWidgetStories( { - moduleSlugs: [ 'analytics' ], - datastore: STORE_NAME, - group: 'Analytics Module/Components/Dashboard/All Traffic Wid...
1
diff --git a/OurUmbraco/Our/Models/OurUmbracoTemplatePage.cs b/OurUmbraco/Our/Models/OurUmbracoTemplatePage.cs @@ -37,9 +37,9 @@ namespace OurUmbraco.Our.Models { var member = membershipHelper.GetCurrentMember(); - var memberAvatarPath = member.GetPropertyValue<string>("avatar"); - memberAvatarPath = HostingEnvironment...
1
diff --git a/netlify.toml b/netlify.toml [build] base = "website" - publish = "build/react-native" + publish = "website/build/react-native" command = "sed -i -e \"s|const baseUrl .*|const baseUrl = '/';|g\" siteConfig.js && yarn install && node netlify-reduce-versions && yarn sync-community-repos && yarn build"
13
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/assetview/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/admin/components/assetview/template.vue "placeholder": "asset title" }, { - "type": "input", + "type": "material-datetime", "inputType": "text", "model": "created", ...
5
diff --git a/articles/api-auth/tutorials/client-credentials/customize-with-hooks.md b/articles/api-auth/tutorials/client-credentials/customize-with-hooks.md @@ -218,3 +218,13 @@ Let's see what each one contains. - __cb__: The callback. In our example we returned the token (`cb(null, access_token)`). If you decide, howe...
0
diff --git a/token-metadata/0xeEEE2a622330E6d2036691e983DEe87330588603/metadata.json b/token-metadata/0xeEEE2a622330E6d2036691e983DEe87330588603/metadata.json "symbol": "ASKO", "address": "0xeEEE2a622330E6d2036691e983DEe87330588603", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED"...
3
diff --git a/src/components/BadgeOverlay/BadgeOverlay.js b/src/components/BadgeOverlay/BadgeOverlay.js @@ -49,8 +49,6 @@ const styles = (theme) => ({ @withStyles(styles, { withTheme: true }) -@inject("uiStore") -@observer class BadgeOverlay extends Component { static propTypes = { children: PropTypes.node,
2
diff --git a/components/Link/Link.js b/components/Link/Link.js @@ -4,15 +4,16 @@ import cx from 'classnames'; import css from './Link.css'; import Icon from '../Icon/Icon'; -const Link = ({ href, className, children, ...rest }) => ( +const Link = ({ href, className, iconClassName, children, ...rest }) => ( <a { ...rest...
11
diff --git a/scripts/interactive-video.js b/scripts/interactive-video.js @@ -1207,6 +1207,9 @@ H5P.InteractiveVideo = (function ($, EventDispatcher, DragNBar, Interaction) { // Make sure splash screen is removed. self.removeSplash(); + + // Make overlay visible to catch mouseup/move events. + self.$overlay.addClass('h5...
7
diff --git a/compat/src/render.js b/compat/src/render.js @@ -140,15 +140,12 @@ options.vnode = vnode => { } // Normalize DOM vnode properties. - let shouldSanitize, attrs, i; - for (i in props) if ((shouldSanitize = CAMEL_PROPS.test(i))) break; - if (shouldSanitize) { - attrs = vnode.props = {}; + let i; for (i in prop...
14
diff --git a/source/balances/contracts/BalanceChecker.sol b/source/balances/contracts/BalanceChecker.sol @@ -146,8 +146,8 @@ contract BalanceChecker is Ownable { * @notice Allow owner to withdraw ether from contract */ function withdraw() public onlyOwner { - address payable payableOwner = address(uint160(owner())); - ...
13
diff --git a/token-metadata/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/metadata.json b/token-metadata/0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183/metadata.json "symbol": "SHROOM", "address": "0xEd0439EACf4c4965AE4613D77a5C2Efe10e5f183", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIE...
3
diff --git a/userscript.user.js b/userscript.user.js @@ -21178,7 +21178,7 @@ var $$IMU_EXPORT$$; video: true }; - common_functions.set_tiktok_vid_filename(baseobj) + common_functions.set_tiktok_vid_filename(obj) if (options.rule_specific && options.rule_specific.tiktok_no_watermarks) { common_functions.get_best_tiktok_...
1
diff --git a/appjs/working.js b/appjs/working.js @@ -1169,6 +1169,11 @@ $(document).ready(function () { closenav(); clearall(); }); + $("#parabbtn").click(function () { + openit("#parab"); + closenav(); + clearall(); + }); $("#ellipsecollapsebtn").click(function () { openit("#ellipsecollapse"); closenav();
1
diff --git a/player/js/elements/svgElements/SVGBaseElement.js b/player/js/elements/svgElements/SVGBaseElement.js @@ -24,13 +24,11 @@ SVGBaseElement.prototype = { // If this layer acts as a mask for the following layer if (this.data.td) { this.matteMasks = {}; - var symbolElement = createNS('symbol'); - symbolElement.se...
1
diff --git a/app/index.html b/app/index.html "editable": true, "zoomFixed": false, "trackSourceServers": [ - "52.45.229.11" + "52.45.229.11/api/v1" ], - "exportViewUrl": "//52.45.229.11/viewconfs/", + "exportViewUrl": "//52.45.229.11/api/v1/viewconfs/", "views": [ { "uid": "aa", 1202566793.8931298, 1207433206.1068702 ]...
3
diff --git a/packages/node_modules/@node-red/editor-client/src/js/red.js b/packages/node_modules/@node-red/editor-client/src/js/red.js @@ -43,6 +43,9 @@ var RED = (function() { } } $('body').append(newScript); + if( $(el).attr('type') === "module"){ + newScript.type = "module" + } newScript.src = RED.settings.apiRootUr...
11
diff --git a/packages/insomnia-app/app/ui/components/wrapper-home.js b/packages/insomnia-app/app/ui/components/wrapper-home.js @@ -8,14 +8,14 @@ import type { Workspace } from '../../models/workspace'; import 'swagger-ui-react/swagger-ui.css'; import { Breadcrumb, + Button, Card, CardContainer, - Header, - SvgIcon, - B...
7
diff --git a/test/acceptance/aggregation.js b/test/acceptance/aggregation.js @@ -143,7 +143,7 @@ describe('aggregation', function () { }, threshold: 1 }, - cartocss: '#layer { marker-width: [value]; }', + cartocss: '#layer { marker-width: [total]; }', cartocss_version: '2.3.0' } }
1
diff --git a/edit.js b/edit.js @@ -114,7 +114,6 @@ loginManager.addEventListener('avatarchange', async (e) => { const cubicBezier = easing(0, 1, 0, 1); let skybox = null; -let skybox2 = null; /* const _loadGltf = u => new Promise((accept, reject) => { new GLTFLoader().load(u, o => { @@ -3859,7 +3858,7 @@ const meshComp...
2
diff --git a/app/dev.html b/app/dev.html @@ -753,28 +753,15 @@ window.hgApi.on('rangeSelection', (rangeSelection) => { ); }); -window.hgApi.get('yes') - .then(() => console.log('yes!')) - .catch(() => console.warn('no!')); +console.log('location:', window.hgApi.getLocation()) +//console.log('viewconf:', window.hgApi.ex...
3
diff --git a/package.json b/package.json "react-native-vector-icons": "6.6.0", "react-native-version-check": "^3.4.0", "react-native-video": "5.1.1", - "react-native-webview": "^8.2.1", + "react-native-webview": "8.2.1", "react-native-zip-archive": "^5.0.2", "react-redux": "^7.1.3", "react-swipeable-views-native": "^0....
12
diff --git a/src/containers/About/About.js b/src/containers/About/About.js @@ -25,9 +25,6 @@ class About extends Component { fetch(README) .then(response => response.text()) .then(text => { - // Logs a string of Markdown content. - // Now you could use e.g. <rexxars/react-markdown> to render it. - console.log(text); th...
2
diff --git a/README.md b/README.md @@ -109,7 +109,7 @@ The IPFS Desktop app will launch and should appear in your OS menu bar. ## Translations -The translations are stored on [./src/locales](./src/locales) and the English version is the source of truth. +The translations are stored on [./assets/locales](./assets/locale...
1
diff --git a/src/components/WalletCard.js b/src/components/WalletCard.js @@ -36,7 +36,6 @@ const StyledIcon = styled(Icon)` const CardFace = styled(motion.div)` position: absolute; backface-visibility: hidden; - height: 100%; width: 100%; color: ${({ theme }) => theme.colors.text}; box-shadow: 0px 14px 66px rgba(0, 0, ...
14
diff --git a/app-object.js b/app-object.js @@ -21,8 +21,8 @@ renderer.setPixelRatio(window.devicePixelRatio); renderer.autoClear = false; renderer.sortObjects = false; // renderer.physicallyCorrectLights = true; -renderer.shadowMap.enabled = true; -renderer.shadowMap.type = THREE.PCFShadowMap; +// renderer.shadowMap.en...
2
diff --git a/shows/255 - slow connection 2.md b/shows/255 - slow connection 2.md @@ -8,7 +8,7 @@ url: https://traffic.libsyn.com/syntax/Syntax255.mp3 In this Hasty Treat, Scott and Wes are back with part 2 on how to develop for slow internet connections. ## Kyle Prinsloo Freelancing - Sponsor -Kyle Prinsloo teaches you...
3
diff --git a/test/test.js b/test/test.js @@ -34,12 +34,17 @@ module.exports = function (redom) { var hello = el('p', 'Hello world!'); t.equals(hello.outerHTML, '<p>Hello world!</p>'); }); - t.test('with Component constractur', function (t) { - t.plan(1); + t.test('with Component constructor', function (t) { + t.plan(2)...
0
diff --git a/lib/package/config.coffee b/lib/package/config.coffee @@ -23,6 +23,7 @@ config = a remote Julia process instead of a local one.' enum: ['Basic', 'Cycler', 'Remote'] default: 'Cycler' + radio: true order: 1 optimisationLevel: title: 'Optimisation Level' @@ -30,6 +31,7 @@ config = type: 'integer' enum: [0, 1...
4
diff --git a/docs/src/pages/options/app-icons.md b/docs/src/pages/options/app-icons.md @@ -8,7 +8,7 @@ There are many different situations where your icon might be seen: In the browse And so now you need your logo in about 80 different sizes with representative names, arcane formats, placed in the right folders and pro...
1
diff --git a/src/matrix/storage/idb/stores/SessionStore.ts b/src/matrix/storage/idb/stores/SessionStore.ts @@ -33,6 +33,10 @@ export class SessionStore { this._localStorage = localStorage; } + private get _localStorageKeyPrefix(): string { + return `${this._sessionStore.databaseName}.session.`; + } + async get(key: str...
4
diff --git a/lib/assets/core/javascripts/cartodb3/editor/layers/layer-content-views/infowindow/infowindow-view.js b/lib/assets/core/javascripts/cartodb3/editor/layers/layer-content-views/infowindow/infowindow-view.js @@ -59,6 +59,13 @@ module.exports = CoreView.extend({ edition: this.model.isCustomTemplate(), disabled:...
4
diff --git a/README.md b/README.md * **1 minute to set up**: You [do not need WebDriver](https://devexpress.github.io/testcafe/faq/#i-have-heard-that-testcafe-does-not-use-selenium-how-does-it-operate) or any other testing software. Install TestCafe with one command, and you are ready to test: `npm install -g testcafe`...
5
diff --git a/vault/dendron.topic.commands.md b/vault/dendron.topic.commands.md @@ -126,6 +126,15 @@ If the title is the same as what Dendron would autogenerate (kebab-case capitali ![](https://foundation-prod-assetspublic53c57cce-8cpvgjldwysl.s3-us-west-2.amazonaws.com/assets/images/command-rename.gif) +### Rename Head...
10
diff --git a/userscript.user.js b/userscript.user.js @@ -1897,7 +1897,14 @@ var $$IMU_EXPORT$$; }; var native_clipboard_write = null; - var browser_clipboard_write = function(data, cb) { + var browser_clipboard_write = null; + var browser_clipboard_api_write = null; + + if (is_interactive) { + browser_clipboard_write =...
7
diff --git a/js/web-server.js b/js/web-server.js @@ -1042,6 +1042,9 @@ function addStatic(dir) { // either add module assets to path or require(init.js) function loadModule(dir) { + if (lastmod(dir + "/.ignore")) { + return; + } const modjs = dir + "/init.js"; lastmod(modjs) ? initModule(modjs, dir) : addStatic(dir); }...
11
diff --git a/metaversefile-api.js b/metaversefile-api.js @@ -33,9 +33,9 @@ import {makeId, getRandomString, getPlayerPrefix} from './util.js'; import JSON6 from 'json-6'; import {rarityColors, initialPosY} from './constants.js'; import * as materials from './materials.js'; +import * as geometries from './geometries.js'...
0
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<!ENTITY version-java-client "4.1.0"> +<!ENTITY version-java-client "4.1.1"> <...
12
diff --git a/index.mjs b/index.mjs @@ -37,6 +37,7 @@ function makeId(length) { app.use('*', async (req, res, next) => { res.setHeader('Cross-Origin-Opener-Policy', 'same-origin'); res.setHeader('Cross-Origin-Embedder-Policy', 'require-corp'); + res.setHeader('Cross-Origin-Resource-Policy', 'cross-origin'); const o = ur...
0
diff --git a/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-update.tsx.ejs b/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-update.tsx.ejs @@ -235,9 +235,14 @@ _%> <%_ } else if (relationshipType === 'many-to-one' || relationshipType === 'one-to-one' && ownerS...
1
diff --git a/src/plots/gl3d/scene.js b/src/plots/gl3d/scene.js @@ -111,7 +111,7 @@ function render(scene) { } tx = vectorTx.join('<br>'); } else if(trace.type === 'isosurface') { - vectorTx.push(Axes.tickText(scene.mockAxis, scene.mockAxis.d2l(selection.traceCoordinate[3].toPrecision(6)), 'hover').text); + vectorTx.pus...
2
diff --git a/src/components/RestrictFocusToChildren.js b/src/components/RestrictFocusToChildren.js @@ -10,25 +10,25 @@ module.exports = class RestrictFocusToChildren extends React.Component { super(props, context); this._wrapper = React.createRef(); - this.focusableDOMNodes = []; + this.focusableNodesInParent = []; } c...
10
diff --git a/public/css/grocy.css b/public/css/grocy.css @@ -161,3 +161,8 @@ td { .date-only-datetimepicker .bootstrap-datetimepicker-widget.dropdown-menu { width: auto !important; } + +/* Third party component customizations - Popper.js */ +.tooltip .arrow { + display: none; +}
2
diff --git a/lib/waterline/utils/query/help-find.js b/lib/waterline/utils/query/help-find.js @@ -273,6 +273,12 @@ module.exports = function helpFind(WLModel, s2q, omen, done) { // Get the adapter for that datastore. var childTableAdapter = childTableModel._adapter; + // Inherit the `meta` properties from the parent que...
11
diff --git a/dist/doc.md b/dist/doc.md @@ -219,7 +219,7 @@ Please use `mount`/`unmount`/`setChildren` every time you need to mount/unmount ### Mount You can mount elements/components with `mount(parent, child, [before])`. If you define the third parameter, it works like `insertBefore` and otherwise it's like `appendChi...
10
diff --git a/data/scripts/R0_estimator.py b/data/scripts/R0_estimator.py @@ -114,7 +114,7 @@ def stair_fit(time, vec, nb_value=3): drop = time[np.argmin([err_function(x, time, vec, val_o, val_e) for x in time])] return val_o, val_e, drop -def stair_fits(time, data, nb_value=3): +def stair_fits(time, data, nb_value=3, d...
1
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> -<!ENTITY version-java-client "5.5.2"> +<!ENTITY version-java-client "5.5.3"> <...
12
diff --git a/compat/test/browser/forwardRef.test.js b/compat/test/browser/forwardRef.test.js @@ -204,7 +204,7 @@ describe('forwardRef', () => { expect(renderCount).to.equal(3); }); - it('should custom memo comparisons to compose', () => { + it('should pass ref through memo() with custom comparer function', () => { cons...
4
diff --git a/src/sass/block-ui.scss b/src/sass/block-ui.scss width: 1em; height: 1em; color:$block-controls-color; + + &:before { + position: absolute; + display: block; + content: ""; + top: -10px; + right: -10px; + bottom: -10px; + left: -10px; + } } .st-block-ui-btn__reorder {
7
diff --git a/package.json b/package.json "devDependencies": { "clean-css-cli": "^4.1.11", "postcss-cli": "^5.0.0", - "node-sass": "^4.9.0", + "sass": "^1.6.0", "autoprefixer": "^8.4.1" }, "scripts": {
14
diff --git a/src/renderer/layer/tilelayer/TileLayerCanvasRenderer.js b/src/renderer/layer/tilelayer/TileLayerCanvasRenderer.js @@ -237,7 +237,7 @@ class TileLayerCanvasRenderer extends CanvasRenderer { } this._childTiles.forEach(t => this._drawTile(t.info, t.image)); - this._parentTiles.forEach(t => this._drawTile(t));...
7
diff --git a/Source/Shaders/GlobeVS.glsl b/Source/Shaders/GlobeVS.glsl @@ -179,16 +179,16 @@ void main() vec3 northPolePositionMC = vec3(0.0, 0.0, 6356752.3142451793); vec3 ellipsoidNormal = normalize(v_positionMC); // TODO: For a sphere this is correct, but not generally for an ellipsoid! vec3 vectorEastMC = normalize...
10
diff --git a/apps/bootloader.js b/apps/bootloader.js @@ -97,13 +97,13 @@ if (startapp) { function drawWidgets() { Object.keys(WIDGETS).forEach(k=>WIDGETS[k].draw()); } - var clockApp = require("Storage").list().filter(a=>a[0]=='+').map(app=>{ + var clockApps = require("Storage").list().filter(a=>a[0]=='+').map(app=>{ t...
1
diff --git a/docs/api/class-reference.md b/docs/api/class-reference.md @@ -17,11 +17,11 @@ This class represents a single parsed Ad - `system: String|null` - `title: String|null` - `description: String|null` -- `advertiser: String|null` +- `advertiser: Object|null` - `pricing: String|null` - `survey: String|null` - `er...
3
diff --git a/Source/Scene/I3SLayer.js b/Source/Scene/I3SLayer.js @@ -10,7 +10,7 @@ import Resource from "../Core/Resource.js"; * </p> * @alias I3SLayer * @constructor - * @param {I3SSceneLayer} sceneLayer The scene layer + * @param {I3SDataProvider} dataProvider The i3s data provider * @param {Object} layerData The lay...
3
diff --git a/app/package.json b/app/package.json "build": "react-scripts build", "start": "concurrently \"cross-env BROWSER=none yarn react-scripts start\" \"wait-on http://localhost:3000 && electron .\"", "pack": "electron-builder --dir", - "dist": "npx build --x64 --macos --win --linux --c.extraMetadata.main=public/e...
4
diff --git a/src/lib/gundb/UserStorageClass.js b/src/lib/gundb/UserStorageClass.js @@ -1260,24 +1260,24 @@ export class UserStorage { logger.error('updateFeedEvent failedEncrypt byId:', event, e.message, e) return { err: e.message } }) - const saveAck = this.feed - .get(day) - .put(JSON.stringify(dayEventsArr)) - .then...
9
diff --git a/vis/js/list.js b/vis/js/list.js @@ -208,9 +208,9 @@ list.getPaperNodes = function(list_data) { .attr("id", "list_holder") .attr("class", function (d) { if (d.resulttype === "dataset") { - return "dataset"; + return "resulttype-dataset"; } else { - return "paper"; + return "resulttype-paper"; } }) .html(lis...
1
diff --git a/node/lib/util/synthetic_branch_util.js b/node/lib/util/synthetic_branch_util.js @@ -185,7 +185,15 @@ function* checkSubmodules(repo, commit) { const result = changeSet.map(function *(path) { const entry = yield commit.getEntry(path); const submodulePath = entry.path(); - const url = submodules[submodulePat...
9
diff --git a/components/measurement/MeasurementContainer.js b/components/measurement/MeasurementContainer.js @@ -26,9 +26,9 @@ const mapTestDetails = { vanilla_tor: VanillaTorDetails } -const renderDetails = (testName = 'other', testKeys) => { +const MeasurementContainer = ({ testName, testKeys, render }) => { const Te...
10
diff --git a/client/src/components/continuous/continuous.js b/client/src/components/continuous/continuous.js @@ -14,7 +14,12 @@ class Continuous extends React.PureComponent { if (!schema) return null; const obsIndex = schema.annotations.obs.index; const allContinuousNames = schema.annotations.obs.columns - .filter((col...
11
diff --git a/services/LocalizationService.php b/services/LocalizationService.php @@ -109,7 +109,7 @@ class LocalizationService } } - public function __t(string $text, ...$placeholderValues) + public function __t($text, ...$placeholderValues) { $this->CheckAndAddMissingTranslationToPot($text); @@ -123,14 +123,14 @@ clas...
1
diff --git a/token-metadata/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/metadata.json b/token-metadata/0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9/metadata.json "symbol": "DONUT", "address": "0xC0F9bD5Fa5698B6505F643900FFA515Ea5dF54A9", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/articles/extensions/bitbucket-deploy.md b/articles/extensions/bitbucket-deploy.md @@ -134,14 +134,6 @@ You can find a `login_success` example in [the Auth0 Samples repository](https:/ To avoid conflicts, you are cannot set multiple Rules of the same order. However, you can create a JSON file for each rule,...
2
diff --git a/src/navigation/checkout/Mercadopago.js b/src/navigation/checkout/Mercadopago.js @@ -3,9 +3,9 @@ import { withTranslation } from 'react-i18next' import { Image, View, StyleSheet } from 'react-native' import { connect } from 'react-redux' import MercadoPagoCheckout from '@blackbox-vision/react-native-mercado...
7
diff --git a/generators/openshift/templates/monitoring/_jhipster-monitoring.yml b/generators/openshift/templates/monitoring/_jhipster-monitoring.yml @@ -295,9 +295,6 @@ objects: labels: app: ${KB_APP_NAME} spec: - volumes: - - name: ${KB_APP_NAME}-data - emptyDir: {} containers: - name: ${KB_APP_NAME} image: <%= DOCKER...
2
diff --git a/styles/find-and-replace.less b/styles/find-and-replace.less @@ -294,7 +294,8 @@ atom-workspace.find-visible { } .search-result { - border-top: 1px solid @base-border-color; + // box-shadow over a border is used to not affect height calculation + box-shadow: inset 0 1px 0 @base-border-color; } .preview {
14
diff --git a/thali/install/setUpTests.sh b/thali/install/setUpTests.sh @@ -198,7 +198,7 @@ build_ios_if_possible() build \ CONFIGURATION_BUILD_DIR="${IOS_PROJECT_DIR}/build/device" \ SHARED_PRECOMPS_DIR="${IOS_PROJECT_DIR}/build/sharedpch" \ - DEVELOPMENT_TEAM="${TEST_DEVELOPMENT_TEAM:-3648SALNRR}" \ + DEVELOPMENT_TEAM...
10
diff --git a/tests/e2e/specs/modules/analytics/setup-with-account-with-tag.test.js b/tests/e2e/specs/modules/analytics/setup-with-account-with-tag.test.js @@ -85,6 +85,7 @@ describe( 'setting up the Analytics module with an existing account and existing await setAnalyticsExistingPropertyId( EXISTING_PROPERTY_ID ); awai...
3
diff --git a/lib/utils.js b/lib/utils.js @@ -210,7 +210,7 @@ var isURLSearchParams = kindOfTest('URLSearchParams'); * @returns {String} The String freed of excess whitespace */ function trim(str) { - return str.trim ? str.trim() : str.replace(/^\s+|\s+$/g, ''); + return str.trim ? str.trim() : str.replace(/^[\s\uFEFF\x...
3
diff --git a/Specs/DomEventSimulator.js b/Specs/DomEventSimulator.js @@ -215,8 +215,18 @@ define([ var gamma = defaultValue(options.gamma, 0.0); var absolute = defaultValue(options.absolute, false); - var event = document.createEvent('DeviceOrientationEvent'); + var event; + event = document.createEvent('DeviceOrientat...
4
diff --git a/packages/insomnia-app/webpack/webpack.config.development.babel.js b/packages/insomnia-app/webpack/webpack.config.development.babel.js @@ -39,12 +39,13 @@ module.exports = { // This is needed for source-maps to resolve correctly contentBase: '/', }, + optimization: { + noEmitOnErrors: true + }, plugins: [ ....
3
diff --git a/package.json b/package.json "name": "find-and-replace", "main": "./lib/find", "description": "Find and replace within buffers and across the project.", - "version": "0.215.5", + "version": "0.215.6", "license": "MIT", "activationCommands": { "atom-workspace": [
6
diff --git a/package.json b/package.json "bootstrap": "yarn install --frozen-lockfile", "build": "lerna run build", "configure": "lerna run configure", - "tag": "lerna publish --skip-npm", - "canary": "lerna publish --skip-git --skip-npm --canary", + "tag": "lerna version", + "canary": "lerna publish --skip-git --canar...
3
diff --git a/readme.md b/readme.md @@ -169,7 +169,6 @@ These tests were executed on Node 8.4.0 ## Limitations -* This package requires Proxies, so Safari > 9, no Internet Explorer, no React Native on Android. This can potentially done, so feel free to upvote on [#8](https://github.com/mweststrate/immer/issues/8) if you...
2