code
stringlengths
122
4.99k
label
int64
0
14
diff --git a/packages/openneuro-server/datalad/__tests__/pagination.spec.js b/packages/openneuro-server/datalad/__tests__/pagination.spec.js @@ -65,4 +65,73 @@ describe('pagination model operations', () => { done() }) }) + describe('maxLimit()', () => { + it('should be within range 1-100', () => { + expect(pagination.m...
7
diff --git a/app/initializers/route-spy.js b/app/initializers/route-spy.js @@ -40,6 +40,12 @@ export function initialize() { } router.transitionTo(msg.name); + } else if (msg.action == 'set-theme') { + const userTheme = window.ls('userTheme'); + + if (userTheme) { + userTheme.setTheme( msg.name, false); + } } }); }
11
diff --git a/now.json b/now.json "COMPOSE_REDIS_URL": "@compose-redis-url", "COMPOSE_REDIS_PORT": "@compose-redis-port", "OPTICS_API_KEY": "@optics-api-key", - "STRIPE_TOKEN": "@stripe-token" + "STRIPE_TOKEN": "@stripe-token", + "TWITTER_OAUTH_CLIENT_SECRET": "@twitter-oauth-client-secret", + "FACEBOOK_OAUTH_CLIENT_SEC...
12
diff --git a/assets/js/modules/adsense/index.legacy.js b/assets/js/modules/adsense/index.legacy.js @@ -94,8 +94,4 @@ if ( modulesData.adsense.active ) { } ); return modules; } ); - - addFilter( `googlesitekit.showDateRangeSelector-${ slug }`, - 'googlesitekit.analyticsShowDateRangeSelector', - () => true ); }
2
diff --git a/packages/vue/src/components/organisms/SfTabs/SfTabs.stories.js b/packages/vue/src/components/organisms/SfTabs/SfTabs.stories.js @@ -63,7 +63,6 @@ storiesOf("Organisms|Tabs", module) <pre> <code> import { SfTabs } from "@storefront-ui/vue" - import { SfTabs } from "@storefront-ui/vue" </code> </pre> ${gener...
7
diff --git a/src/Model.js b/src/Model.js @@ -385,6 +385,10 @@ export class Model { if (promises.length) { results = results.concat(await Promise.all(promises)) } + results.next = items.next + results.prev = items.prev + Object.defineProperty(results, 'next', {enumerable: false}) + Object.defineProperty(results, 'prev',...
1
diff --git a/edit.js b/edit.js @@ -54,6 +54,7 @@ const localQuaternion3 = new THREE.Quaternion(); const localEuler = new THREE.Euler(); const localMatrix = new THREE.Matrix4(); const localMatrix2 = new THREE.Matrix4(); +const localFrustum = new THREE.Frustum(); const cubicBezier = easing(0, 1, 0, 1); @@ -829,6 +830,7 @...
0
diff --git a/README.md b/README.md @@ -30,9 +30,9 @@ It is recommended to develop against the `dev` version, and in production to use ## Documentation * Learn how to integrate the editor with these [complete samples](https://github.com/Microsoft/monaco-editor-samples/). - * [Integrate the AMD version](./docs/integrate-...
1
diff --git a/server/interpreter.js b/server/interpreter.js @@ -4438,19 +4438,19 @@ Interpreter.prototype.installTypes = function() { var paramValue = args.length > i ? args[i] : undefined; intrp.addVariableToScope(scope, paramName, paramValue); } - // Build arguments variable. + // Build arguments object. // // BUG(cpc...
10
diff --git a/lib/hooks/helpers/load-helpers.js b/lib/hooks/helpers/load-helpers.js */ var _ = require('@sailshq/lodash'); -var Machine = require('machine'); var includeAll = require('include-all'); +var Machine = require('machine'); @@ -13,10 +13,9 @@ var includeAll = require('include-all'); * * @param {SailsApp} sails...
9
diff --git a/src/pages/strategy/tabs/mstship/mstship.js b/src/pages/strategy/tabs/mstship/mstship.js // Show damaged CG of shipgirl or abyssal boss $(".tab_mstship .shipInfo .cgswf .dmg_mode").on("click", function(e){ - if(!KC3Master.isSeasonalShip(self.currentShipId)){ self.showShip(self.currentShipId, true, false); -...
11
diff --git a/contracts/contracts/token/OUSD.sol b/contracts/contracts/token/OUSD.sol @@ -186,9 +186,10 @@ contract OUSD is Initializable, InitializableToken, Governable { // Transfer between two non rebasing accounts. They may have // different exchange rates so update the count of non rebasing // credits with the diff...
11
diff --git a/src/js/Helpers.tsx b/src/js/Helpers.tsx @@ -156,11 +156,7 @@ export default { }); replacedText = reactStringReplace(replacedText, /(https?:\/\/\S*[^.?,)\s])/gi, (match, i) => ( - <a - key={match + i} - href={match} - target={match.startsWith('https://iris.to') ? '_self' : '_blank'} - > + <a key={match + i}...
9
diff --git a/docs/apps.md b/docs/apps.md | [SpaceX Wiki](https://www.spacexwiki.com/) | Website | [Chris Stielper](https://github.com/cstielper) | [GitHub](https://github.com/cstielper/react-spacex-wiki) | | [X-Watch](https://x-watch.xyz/) | Website | [Matt Mills](https://github.com/mattmillsxyz) | [GitHub](https://git...
3
diff --git a/app/models/visualization/table_blender.rb b/app/models/visualization/table_blender.rb @@ -22,7 +22,7 @@ module CartoDB if base_layer.supports_labels_layer? destination_map.layers << Carto::LayerFactory.build_default_labels_layer(base_layer) end - destination_map.provider = 'googlemaps' if base_layer.gmapsb...
12
diff --git a/lib/waterline/methods/find.js b/lib/waterline/methods/find.js @@ -19,43 +19,6 @@ var processAllRecords = require('../utils/query/process-all-records'); var DEFERRED_METHODS = getQueryModifierMethods('find'); -// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -// FUTURE: Check the p...
2
diff --git a/.github/workflows/newcomers-alert.yml b/.github/workflows/newcomers-alert.yml @@ -4,7 +4,7 @@ on: types: [opened, labeled] jobs: good-first-issue-notify: - if: contains(github.event.issue.labels.*.name, 'good first issue') || contains(github.event.issue.labels.*.name, 'first-timers-only') + if: github.even...
7
diff --git a/src/base/CursorAPIMixin.js b/src/base/CursorAPIMixin.js @@ -76,10 +76,8 @@ export default function CursorAPIMixin(Base) { return; } const currentIndex = items.indexOf(currentItem); - if (currentIndex >= 0) { this[setState]({ currentIndex }); } - } /** * True if the list should always have a current item (i...
12
diff --git a/src/Template.js b/src/Template.js @@ -479,13 +479,15 @@ class Template extends TemplateContent { this.linters.push(callback); } - async runLinters(str, inputPath, outputPath) { + async runLinters(str, page) { + let { inputPath, outputPath, url } = page; for (let linter of this.linters) { // these can be as...
0
diff --git a/src/components/refund/components/RefundDialog.js b/src/components/refund/components/RefundDialog.js @@ -8,6 +8,7 @@ import Text from '../../common/view/Text' import AlertOctagon from '../../../assets/alertOctagon.svg' import { openLink } from '../../../lib/utils/linking' import Config from '../../../config...
0
diff --git a/layouts/partials/helpers/config.html b/layouts/partials/helpers/config.html -{{- if and (in (slice "meta" "icon" "css" "icon" "link" "js") .type) -}} +{{- if in (slice "meta" "icon" "css" "icon" "link" "js") .type -}} {{- if .data.html -}} {{- if and (eq .type "meta") (eq .head true) }} {{ print .data.html...
0
diff --git a/src/components/Match/MatchStory.jsx b/src/components/Match/MatchStory.jsx @@ -545,11 +545,11 @@ class TimeMarkerEvent extends StoryEvent { this.radiant_gold = match.players .filter(player => player.isRadiant) .map(player => player.gold_t[minutes]) - .reduce((a, b) => a + b); + .reduce((a, b) => a + b, 0); ...
1
diff --git a/translations/en-us.yaml b/translations/en-us.yaml @@ -1829,8 +1829,8 @@ catalogSettings: header: Catalogs notAvailable: "Not available: there is a custom catalog called <code>{name}</code>" helpText: Currently only Helm catalogs are supported - currentCluster: This Cluster - currentProject: This Project + ...
2
diff --git a/public/javascripts/SVValidate/src/panorama/PanoramaContainer.js b/public/javascripts/SVValidate/src/panorama/PanoramaContainer.js @@ -113,7 +113,7 @@ function PanoramaContainer (labelList) { */ function reset () { setProperty('progress', 0); - svv.panorama.setLabel(labels[getProperty('progress')]); + loadN...
1
diff --git a/src/index.js b/src/index.js @@ -31,6 +31,7 @@ const AwsS3 = require('./plugins/AwsS3') // Other? const RestoreFiles = require('./plugins/RestoreFiles') +const ReduxDevTools = require('./plugins/ReduxDevTools') module.exports = { Core, @@ -51,5 +52,6 @@ module.exports = { Dashboard, MetaData, Webcam, - Rest...
0
diff --git a/src/containers/Roles/Role.js b/src/containers/Roles/Role.js @@ -127,7 +127,8 @@ class Role extends Component { setDialogIsOpen, submit, muiTheme, - match + match, + firebaseApp }=this.props; const uid=match.params.uid; @@ -179,6 +180,7 @@ class Role extends Component { id: this.props.match.params.uid?'edit...
1
diff --git a/data.js b/data.js @@ -5401,6 +5401,14 @@ module.exports = [{ url: "https://github.com/branneman/TinyAnimate", source: "https://raw.githubusercontent.com/branneman/TinyAnimate/master/src/TinyAnimate.js" }, + { + name: "XPopUp", + github: "reduardo7/xpopup", + tags: ["popup", "window.open", "javascript", "br...
0
diff --git a/core/type_expr.js b/core/type_expr.js @@ -188,9 +188,6 @@ Blockly.TypeExpr.prototype.isStructure = function() { Blockly.TypeExpr.prototype.isPattern = function() { return this.label == Blockly.TypeExpr.PATTERN_; }; -Blockly.TypeExpr.prototype.isString = function() { - return this.label == Blockly.TypeExpr....
2
diff --git a/app/views/main.scala.html b/app/views/main.scala.html <script src='@routes.Assets.at("javascripts/lib/leaflet-omnivore.min.js")'></script> <script src='@routes.Assets.at("javascripts/lib/js.cookie.js")'></script> <script type="text/javascript" - src="https://maps.googleapis.com/maps/api/js?v=3.26&key=AIzaS...
3
diff --git a/src/components/play-mode/quests/Quests.jsx b/src/components/play-mode/quests/Quests.jsx @@ -2,11 +2,12 @@ import * as THREE from 'three'; import React, {useState, useRef, useEffect} from 'react'; // import classnames from 'classnames'; import styles from './quests.module.css'; -import {rootScene, scene} fr...
0
diff --git a/angular/projects/spark-angular/src/lib/directives/inputs/sprk-helper-text/sprk-helper-text.directive.spec.ts b/angular/projects/spark-angular/src/lib/directives/inputs/sprk-helper-text/sprk-helper-text.directive.spec.ts @@ -5,9 +5,9 @@ import { SprkHelperTextDirective } from './sprk-helper-text.directive';...
3
diff --git a/apps/processing/jobs.py b/apps/processing/jobs.py @@ -28,6 +28,8 @@ from base import utils, models as M, annotations, utils_response as UR import glob, json, pyPdf, shutil, re, random, string, logging from django.template.loader import render_to_string from django.core.mail import EmailMessage +from HTMLPa...
2
diff --git a/lib/cmd.js b/lib/cmd.js @@ -54,10 +54,10 @@ Cmd.prototype.newApp = function() { console.error('Invalid name:', err.message); // Manually call retry // The passed error has a retry method to easily prompt again. - return err.retry(); + err.retry(); } else { //slightly different assignment of name since it c...
2
diff --git a/.github/workflows/docs-deploy.yml b/.github/workflows/docs-deploy.yml @@ -16,5 +16,5 @@ jobs: HOST: ${{ secrets.DOCUMENTATION_SSH_HOST }} TARGET: "/var/www/select2-docs/user" SOURCE: "docs/*" - args: - "--strip.components 1" \ No newline at end of file + with: + args: "--strip.components 1" \ No newline at...
4
diff --git a/package.json b/package.json }, "scripts": { "build": "cd scripts && ./build", - "docs-dev": "nuxt dev", - "docs-gen": "nuxt generate", + "docs-dev": "node node_modules/nuxt/bin/nuxt dev", + "docs-gen": "node node_modules/nuxt/bin/nuxt generate", "docs-deploy": "cd scripts && ./gh-pages" }, "keywords": [
4
diff --git a/tests/phpunit/includes/OptionsTestTrait.php b/tests/phpunit/includes/OptionsTestTrait.php @@ -54,8 +54,10 @@ trait OptionsTestTrait { protected function assertOptionsDeleted( $is_network_mode ) { foreach ( $this->get_option_keys() as $option_name ) { if ( $is_network_mode ) { + remove_all_filters( "default...
2
diff --git a/Source/Scene/Cesium3DTileset.js b/Source/Scene/Cesium3DTileset.js @@ -1782,7 +1782,15 @@ function makeTile(tileset, baseResource, tileHeader, parentTile) { uri: contentUri, }, }; - var tileJson = combine(contentJson, tileHeader); + + var deepCopy = true; + var tileJson = combine(contentJson, tileHeader, de...
1
diff --git a/src/content/en/android/trusted-web-activity/query-parameters/index.md b/src/content/en/android/trusted-web-activity/query-parameters/index.md @@ -28,7 +28,7 @@ Activity. ### Using Bubblewrap -[Bubblewrap][4] is a tool created to helps developers to creating a Project for an +[Bubblewrap][4] is a tool creat...
1
diff --git a/src/hosted_agents/hosted_agents.js b/src/hosted_agents/hosted_agents.js @@ -219,7 +219,7 @@ class HostedAgents { } - _stop_agent(node_name) { + _stop_agent(node_name, should_clean) { dbg.log0(`Stopping agent for pool id ${node_name}`); if (!this._started_agents[node_name]) { dbg.warn(`${node_name} is not s...
1
diff --git a/shared/js/background/atb.es6.js b/shared/js/background/atb.es6.js @@ -15,8 +15,6 @@ var ATB = (() => { let atbSetting = settings.getSetting('atb') let setAtbSetting = settings.getSetting('set_atb') - if (!atbSetting || !setAtbSetting) { resolve(null) } - let randomValue = Math.ceil(Math.random() * 1e7) let...
2
diff --git a/src/components/constants.js b/src/components/constants.js @@ -21,6 +21,8 @@ export default { colorBlueMuted: 'rgba(102, 187, 255, 0.3)', colorYelorMuted: 'rgba(255, 171, 64, 0.3)', colorMutedLight: 'rgb(179, 179, 179)', + colorMutedGreen: '#325233', + colorMutedRed: '#523332', colorRanked: 'rgba(241, 170, ...
7
diff --git a/CHANGELOG.md b/CHANGELOG.md ### Breaking change - When in dev, always use `npm run dev` to start both server and client +- When installing the deps, if you're using typescript, you'll have to run `typings install` manually; the `preinstall` and `postinstall` were removed + ## [1.8](https://github.com/ericm...
0
diff --git a/src/components/nodes/inclusiveGateway/index.js b/src/components/nodes/inclusiveGateway/index.js @@ -11,7 +11,7 @@ export default { label: 'Inclusive Gateway', definition(moddle) { return moddle.create('bpmn:InclusiveGateway', { - name: 'New Inclusive Gateway', + name: null, gatewayDirection: gatewayDirecti...
12
diff --git a/src/plots/cartesian/axes.js b/src/plots/cartesian/axes.js @@ -2272,7 +2272,7 @@ axes.draw = function(gd, arg, opts) { var axDone = axes.drawOne(gd, ax, opts); if(ax._shiftPusher) { - incrementShift(ax, ax._fullDepth, axShifts, true); + incrementShift(ax, ax._fullDepth || 0, axShifts, true); } ax._r = ax.ra...
12
diff --git a/assets/js/modules/idea-hub/components/dashboard/DashboardIdeasWidget/SavedIdeas.js b/assets/js/modules/idea-hub/components/dashboard/DashboardIdeasWidget/SavedIdeas.js @@ -25,7 +25,6 @@ import PropTypes from 'prop-types'; * WordPress dependencies */ import { __ } from '@wordpress/i18n'; -import { Fragment,...
2
diff --git a/data.js b/data.js @@ -5185,6 +5185,14 @@ module.exports = [ url: "http://giraysam.github.io/boomerang-cache/", source: "https://raw.githubusercontent.com/giraysam/boomerang-cache/master/src/boomerang-cache.js" }, + { + name: "Prophet.js", + github: "binarybaba/prophetjs", + tags: ["toast", "notification", ...
0
diff --git a/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.spec.ts b/angular/projects/spark-angular/src/lib/components/sprk-masthead/sprk-masthead.component.spec.ts @@ -178,9 +178,10 @@ describe('SprkMastheadComponent', () => { window.scrollTo(expectedLeft, expectedTop); window...
3
diff --git a/app/controllers/carto/api/api_keys_controller.rb b/app/controllers/carto/api/api_keys_controller.rb @@ -24,8 +24,7 @@ class Carto::Api::ApiKeysController < ::Api::ApplicationController Carto::ApiKey::TYPE_REGULAR].freeze def create - carto_viewer = Carto::User.find(target_user.id) - api_key = carto_viewer....
2
diff --git a/src/components/Match/MatchStory.jsx b/src/components/Match/MatchStory.jsx @@ -610,7 +610,7 @@ class ExpensiveItemEvent extends StoryEvent { this.price_limit = price; match.players.forEach((player) => { Object.entries(player.first_purchase_time).forEach(([item, time]) => { - if (items[item].cost >= price &&...
1
diff --git a/weapons-manager.js b/weapons-manager.js @@ -9,6 +9,7 @@ import physicsManager from './physics-manager.js'; import {world} from './world.js'; import * as universe from './universe.js'; import {rigManager} from './rig.js'; +import {buildMaterial} from './shaders.js'; import {teleportMeshes} from './teleport....
0
diff --git a/src/index.js b/src/index.js @@ -315,7 +315,7 @@ class Offline { const apiKeys = this.service.provider.apiKeys; const protectedRoutes = []; - if (['nodejs', 'nodejs4.3', 'nodejs6.10', 'babel'].indexOf(serviceRuntime) === -1) { + if (['nodejs', 'nodejs4.3', 'nodejs6.10', 'nodejs8.10', 'babel'].indexOf(servic...
0
diff --git a/src/components/NavigationMobile/NavigationItemMobile.js b/src/components/NavigationMobile/NavigationItemMobile.js @@ -71,7 +71,6 @@ class NavigationItemMobile extends Component { const { classes } = this.props; return ( <div className={classes.subNav}> - <Divider /> {navItemGroup.subTags.edges.map(({ node:...
2
diff --git a/src/renderer/map/MapCanvasRenderer.js b/src/renderer/map/MapCanvasRenderer.js @@ -80,9 +80,11 @@ export default class MapCanvasRenderer extends MapRenderer { const fps = map.options['fpsOnInteracting'] || 0; const timeLimit = fps === 0 ? 0 : 1000 / fps; // time of layer drawing + const layerLimit = this.ma...
7
diff --git a/token-metadata/0xa101E27f06A97985B925E244111b61560Ecd97DB/metadata.json b/token-metadata/0xa101E27f06A97985B925E244111b61560Ecd97DB/metadata.json "symbol": "BITTO", "address": "0xa101E27f06A97985B925E244111b61560Ecd97DB", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED...
3
diff --git a/ethereum.js b/ethereum.js @@ -506,12 +506,12 @@ let {Account: AccountAbi, FT: FTAbi, FTProxy: FTProxyAbi, NFT: NFTAbi, NFTProxy: const nftBalance = await contracts['main'].NFT.methods.balanceOf(testAddress).call(); const tokens = []; for (let i = 0; i < nftBalance; i++) { - const tokenId = await contracts[...
0
diff --git a/source/management_api/log4js_configuration.json b/source/management_api/log4js_configuration.json "UsersResource": "INFO", "UserResource": "INFO", "TokensResource": "INFO", - "NuveAuthenticator": "INFO", + "ServerAuthenticator": "INFO", "RequestHandler": "INFO", "RPCPublic": "INFO", "RPC": "INFO", - "Nuve"...
10
diff --git a/source/components/FormField.js b/source/components/FormField.js @@ -12,7 +12,7 @@ export default class FormField extends SkinnableComponent { onFocus: PropTypes.func, onBlur: PropTypes.func, disabled: PropTypes.bool, - error: PropTypes.string, + error: StringOrElement, }); static defaultProps = {
11
diff --git a/src/commands/libcoreReset.js b/src/commands/libcoreReset.js // @flow import { createCommand, Command } from 'helpers/ipc' -import { of } from 'rxjs' +import { from } from 'rxjs' import withLibcore from 'helpers/withLibcore' type Input = void type Result = boolean -const cmd: Command<Input, Result> = create...
4
diff --git a/token-metadata/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/metadata.json b/token-metadata/0xba7435A4b4C747E0101780073eedA872a69Bdcd4/metadata.json "symbol": "AIRDROP", "address": "0xba7435A4b4C747E0101780073eedA872a69Bdcd4", "decimals": 18, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFI...
3
diff --git a/CHANGES.md b/CHANGES.md - Added checks for supported 3D Tiles extensions. [#9552](https://github.com/CesiumGS/cesium/issues/9552) - Added documentation clarifying that the `outlineWidth` property will be ignored on all major browsers on Windows platforms. [#9600](https://github.com/CesiumGS/cesium/pull/960...
3
diff --git a/app/shared/components/Global/Form/Field/Token.js b/app/shared/components/Global/Form/Field/Token.js @@ -19,7 +19,11 @@ export default class GlobalFormFieldToken extends Component<Props> { }; } onChange = debounce((e, { name, value }) => { - const asset = (this.props.connection && this.props.connection.chai...
11
diff --git a/website/ops.js b/website/ops.js @@ -706,7 +706,7 @@ module.exports={ return ret; }, toSortkey: function(s, abc){ - const keylength=5; + const keylength=15; var ret=s.replace(/\<[\<\>]+>/g, "").toLowerCase(); //replace any numerals: var pat=new RegExp("[0-9]{1,"+keylength+"}", "g");
4
diff --git a/lib/plugins/helper/open_graph.js b/lib/plugins/helper/open_graph.js @@ -35,7 +35,7 @@ function openGraphHelper(options = {}) { const keywords = page.keywords || (page.tags && page.tags.length ? page.tags : undefined) || config.keywords; const title = options.title || page.title || config.title; const type ...
1
diff --git a/test/tests/KeyboardPrefixSelectionMixin.tests.js b/test/tests/KeyboardPrefixSelectionMixin.tests.js @@ -45,15 +45,15 @@ describe("KeyboardPrefixSelectionMixin", () => { const prefix = 'blu'; // The keys we'll simulate. // Typing "b" moves to "Banana". - fixture[symbols.keydown]({ key: prefix[0] }); + simul...
9
diff --git a/lnd_supervisor.conf b/lnd_supervisor.conf [program:lnd] user=root -command=lnd --lnddir=/relay/.lnd/ +command=lnd --lnddir=/relay/.lnd/ --externalip=$(curl $ECS_CONTAINER_METADATA_URI | echo $(jq -r .DockerName).$NODE_DOMAIN) startretries=999999999999999999999999999 autostart=true autorestart=true \ No new...
0
diff --git a/generators/generator-constants.js b/generators/generator-constants.js @@ -28,7 +28,7 @@ const YARN_VERSION = '1.22.4'; const NPM_VERSION = '6.14.5'; const GRADLE_VERSION = '6.5'; -const JIB_VERSION = '2.3.0'; +const JIB_VERSION = '2.4.0'; // Libraries version const JHIPSTER_DEPENDENCIES_VERSION = '3.9.0-SN...
3
diff --git a/token-metadata/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/metadata.json b/token-metadata/0x595832F8FC6BF59c85C527fEC3740A1b7a361269/metadata.json "symbol": "POWR", "address": "0x595832F8FC6BF59c85C527fEC3740A1b7a361269", "decimals": 6, - "dharmaVerificationStatus": { "dharmaVerificationStatus": "VERIFIED" ...
3
diff --git a/js/webviews.js b/js/webviews.js @@ -113,7 +113,7 @@ function scrollOnLoad (tabId, scrollPosition) { } const webviews = { - tabViewMap: {}, // tabId: browserView + viewList: [], // [tabId] tabContentsMap: {}, // tabId: webContents viewFullscreenMap: {}, // tabId, isFullscreen selectedId: null, @@ -138,14 +1...
14
diff --git a/packages/app/src/components/StickyStretchableScroller.jsx b/packages/app/src/components/StickyStretchableScroller.jsx @@ -89,6 +89,8 @@ const StickyStretchableScroller = (props) => { railVisible: true, position: 'right', height: isScrollEnabled ? viewHeight : contentsHeight, + wheelStep: 10, + allowPageScr...
7
diff --git a/src/definitions/elements/button.less b/src/definitions/elements/button.less color: @iconColor; } -.ui.button:not(.icon) > .icon:not(.button):not(.dropdown) { +.ui.button:not(.icon) > .icon:not(.button):not(.dropdown), +.ui.button:not(.icon) > .icons:not(.button):not(.dropdown) { margin: @iconMargin; } .ui....
1
diff --git a/test/image/mocks/20.json b/test/image/mocks/20.json ], "showline": true, "ticks": "outside", - "mirror": true + "mirror": true, + "linecolor": "rgba(0,0,0,0.5)", + "linewidth": 10 }, "yaxis": { "title": "yaxis title", "tickfont": { "color": "#1f77b4" }, - "linecolor": "#1f77b4" + "linecolor": "rgba(31,119,...
3
diff --git a/desktop/src/config.js b/desktop/src/config.js @@ -22,8 +22,8 @@ module.exports = { WINDOW_DEFAULT_HEIGHT: 800, WINDOW_DEFAULT_WIDTH: 1300, WINDOW_MIN_HEIGHT: 500, - WINDOW_MIN_WIDTH: 770, - WINDOW_BG_COLOR: '#F5F8FC', + WINDOW_MIN_WIDTH: 320, + WINDOW_BG_COLOR: '#FAFAFA', ICON: resolve(__dirname, '../resou...
11
diff --git a/src/main/resources/public/js/src/launches/logLevel/LogItemNextError/LogItemNextErrorView.js b/src/main/resources/public/js/src/launches/logLevel/LogItemNextError/LogItemNextErrorView.js @@ -126,8 +126,18 @@ define(function (require, exports, module) { self.collectionLogs.get(logId) && self.collectionLogs.g...
1
diff --git a/test/test.js b/test/test.js @@ -506,8 +506,6 @@ describe('api limits', () => { [ '/api', // Docs '/api/metadata', // Login status - '/login', - '/logout', '/api/admin/apiMetrics', // Admin metrics '/keys', // API Key management ], (i, cb) => {
1
diff --git a/app/assets/stylesheets/editor-3/public.scss b/app/assets/stylesheets/editor-3/public.scss width: 100%; height: 100%; max-height: 100%; + border-radius: 0; box-shadow: none; } .CDB-Legends-canvasInner { height: 100%; min-height: 100%; + border-radius: 0; } }
7
diff --git a/src/PanelTraits/AutoSet.php b/src/PanelTraits/AutoSet.php @@ -56,7 +56,7 @@ trait AutoSet */ public function getDbColumnTypes() { - foreach ($this->getTableColumns() as $key => $column) { + foreach ($this->getDbTableColumns() as $key => $column) { $column_type = $column->getType()->getName(); $this->db_col...
10
diff --git a/shop/src/themes/art/theme.json b/shop/src/themes/art/theme.json "fields": [{ "id": "headerLogo", "title": "Homepage Logo", - "type": "media" + "type": "media", + "allowPNG": true }, { "id": "headerImage", "title": "Header Image",
11
diff --git a/README.md b/README.md @@ -100,6 +100,7 @@ Props | Type | Default Value | Descripti `appendDots` | `func` | `dots => <ul>{dots}</ul>` | Custom dots templates. Works same as customPaging | Yes `draggable` | `bool` | `true` | Enable scrollable via dragging on desktop | Yes `easing` | `string` | `'linear'` | |...
0
diff --git a/lib/util/shortPoll.js b/lib/util/shortPoll.js @@ -25,9 +25,11 @@ exports.func = function (args) { if (stop) { return; } - return latest(value, evt) - .timeout(timeout) - .then(function (response) { + var promise = latest(value, evt); + if (timeout > 0) { + promise = promise.timeout(timeout); + } + return p...
11
diff --git a/src/services/fungibleTokens.js b/src/services/fungibleTokens.js @@ -26,10 +26,10 @@ export class FungibleTokens { } async isStorageBalanceAvailable(contractName, accountId) { - return new BN((await this.checkStorageBalance(contractName, accountId)).total).gte(new BN(FT_MINIMUM_STORAGE_BALANCE)); + return n...
10
diff --git a/config/redirects.js b/config/redirects.js @@ -1661,5 +1661,17 @@ module.exports = [ { from: `/metadata/management-api`, to: `/metadata/apis` + }, + { + from: `/connections/grean/bankid-no`, + to: `/connections/criipto/bankid-no` + }, + { + from: `/connections/grean/bankid-se`, + to: `/connections/criipto/b...
0
diff --git a/packages/vulcan-core/lib/modules/containers/withAccess.js b/packages/vulcan-core/lib/modules/containers/withAccess.js @@ -13,7 +13,7 @@ export default function withAccess (options) { // if there are any groups defined check if user belongs, else just check if user exists canAccess = currentUser => { - retu...
11
diff --git a/blank_project/src/config.js b/blank_project/src/config.js case 'local': case 'test': return { - nodeUrl: 'http://localhost:8080', + nodeUrl: 'http://localhost:3030', contractName: CONTRACT_NAME }; default:
1
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.210.0", + "version": "0.211.0", "license": "MIT", "activationCommands": { "atom-workspace": [
6
diff --git a/lib/util/dom_utils.js b/lib/util/dom_utils.js @@ -36,7 +36,9 @@ shaka.util.Dom = class { * @return {!HTMLButtonElement} */ static createButton() { - return /** @type {!HTMLButtonElement} */(document.createElement('button')); + const button = document.createElement('button'); + button.setAttribute('type', '...
1
diff --git a/runtime/shared/FbtResultBase.js b/runtime/shared/FbtResultBase.js @@ -100,6 +100,27 @@ class _FbtResultBase implements IFbtResultBase { return this._contents; } + /** + * Handle the error scenario where the FbtResultBase contains non-string elements + * (usually React components) and tries to run .toString...
7
diff --git a/main.tf b/main.tf @@ -35,7 +35,7 @@ module "main" { }, { name = "MONGO_URI" - value = "${data.aws_ssm_parameter.db_user.value}:${data.aws_ssm_parameter.db_password.value}@${data.aws_ssm_parameter.db_host.value}:27017/fightpandemics" + value = "mongodb+srv://${data.aws_ssm_parameter.db_user.value}:${data.aw...
12
diff --git a/docker-compose.yml b/docker-compose.yml @@ -8,7 +8,7 @@ services: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres registry: - image: dockerhub/open-saber + image: dockerhub/registry environment: - connectionInfo_uri=jdbc:postgresql://db:5432/postgres - connectionInfo_username=postgres
4
diff --git a/components/input/theme.css b/components/input/theme.css width: var(--input-icon-size); } -.inputElement { - background-color: var(--input-text-background-color); - border-bottom: 1px solid var(--input-text-bottom-border-color); - border-left: 0; - border-radius: 0; - border-right: 0; - border-top: 0; - col...
1
diff --git a/modules/Collections/views/import/collection.php b/modules/Collections/views/import/collection.php <td> <div class="uk-form-select"> <a class="{ parent.mapping[field.name] ? 'uk-link-muted':''}"><i class="uk-icon-exchange" show="{parent.mapping[field.name]}"></i> { parent.mapping[field.name] || 'Select...'}...
14
diff --git a/src/js/controllers/tab-home.js b/src/js/controllers/tab-home.js 'use strict'; angular.module('copayApp.controllers').controller('tabHomeController', - function($rootScope, $timeout, $scope, $state, $stateParams, $ionicModal, $ionicScrollDelegate, $window, gettextCatalog, lodash, popupService, ongoingProces...
1
diff --git a/content/docs/for-developers/sending-email/laravel.md b/content/docs/for-developers/sending-email/laravel.md @@ -80,7 +80,7 @@ class TestEmail extends Mailable ->bcc($address, $name) ->replyTo($address, $name) ->subject($subject) - ->with([ 'testmessage' => $this->data['message'] ]); + ->with([ 'test_messag...
10
diff --git a/website/site/content/blog/netlify-cms-now-supports-gitlab-as-a-backend.md b/website/site/content/blog/netlify-cms-now-supports-gitlab-as-a-backend.md @@ -5,7 +5,7 @@ description: >- Netlify CMS, the open source, headless CMS that provides a user-friendly UI around your Git repository, can now be used with ...
1
diff --git a/Dockerfile b/Dockerfile @@ -7,6 +7,8 @@ COPY package*.json ./ RUN npm install + + FROM raspbian/stretch @@ -27,8 +29,11 @@ RUN mkdir node_modules COPY --from=node /usr/src/app/node_modules ./node_modules # Bundle app source + COPY . . +RUN npm run prod + RUN touch /lib/systemd/system/fabmo.service RUN echo...
0
diff --git a/.travis.yml b/.travis.yml +dist: trusty sudo: false language: node_js @@ -11,10 +12,11 @@ addons: apt: sources: - ubuntu-toolchain-r-test + - google-chrome packages: - g++-4.8 - python-virtualenv - - chromium-browser + - google-chrome-stable matrix: include: @@ -34,7 +36,6 @@ cache: - node_modules before_i...
4
diff --git a/src/client/js/components/InstallerForm.jsx b/src/client/js/components/InstallerForm.jsx @@ -62,7 +62,6 @@ class InstallerForm extends React.Component { <i className="icon-bubbles border-0 rounded-0" /> <button type="button" - name="registerForm[app:globalLang]" className="btn btn-secondary dropdown-toggle ...
14
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -488,17 +488,6 @@ final class Analytics extends Module implements Module_With_Screen, Module_With_ return function() { $option = $this->get_settings()->get(); - // TODO: Remove this at some point (migration of old 'ampClientIdOptIn' option)...
2
diff --git a/node/lib/util/print_status_util.js b/node/lib/util/print_status_util.js @@ -389,7 +389,6 @@ exports.printRepoStatus = function (status, cwd) { if (0 !== staged.length) { changes += `\ Changes to be committed: - (use "git meta reset HEAD <file>..." to unstage) `; changes += exports.printStatusDescriptors(st...
2
diff --git a/gulpfile.js b/gulpfile.js @@ -370,36 +370,54 @@ function formattingCheckAlien(data, pack, file) { if (!isSourceValid(source)) { addWarningForPack(`${file}: Improperly formatted source field "${source}".`, pack); } + + // Validate items + for (i in data.items) { + formattingCheckEquipment(data.items[i], pac...
7
diff --git a/src/public/target/sections/MousePhenotypes/custom/PhenotypesTable.js b/src/public/target/sections/MousePhenotypes/custom/PhenotypesTable.js @@ -70,30 +70,24 @@ const getColumns = ( id: 'subjectAllelicComposition', label: 'Allelic composition', renderCell: row => { - const regex = /(.*)<(.*)>\/(.*)<(.*)>/; ...
9